Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the Rakefile #118

Merged
merged 5 commits into from
Apr 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/jekyll

## Development

To set up your environment to develop this theme, run `bundle install`.
To set up your environment to develop this theme, run `script/bootstrap`.

To test your theme, run `bundle exec rake preview` and open your browser at `https://localhost:4000`. This starts a Jekyll server using your theme and the contents. As you make modifications, your site will regenerate and you should see the changes in the browser after a refresh.
To test your theme, run `script/server` (or `bundle exec jekyll serve`) and open your browser at `https://localhost:4000`. This starts a Jekyll server using your theme and the contents. As you make modifications, your site will regenerate and you should see the changes in the browser after a refresh.

## License

Expand Down
72 changes: 0 additions & 72 deletions Rakefile

This file was deleted.

2 changes: 0 additions & 2 deletions minima.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,5 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

spec.add_runtime_dependency "jekyll", "~> 3.3"

spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
end
3 changes: 3 additions & 0 deletions script/server
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

bundle exec jekyll serve