Skip to content

Commit

Permalink
Remove the Rakefile (#118)
Browse files Browse the repository at this point in the history
Merge pull request 118
  • Loading branch information
benbalter authored and jekyllbot committed Apr 7, 2017
1 parent 4df89a0 commit a17f896
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 76 deletions.
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 `http://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 `http://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

0 comments on commit a17f896

Please sign in to comment.