Skip to content

Commit

Permalink
update jekyll-feed to 0.11 and add support to use docker-compose to s…
Browse files Browse the repository at this point in the history
…etup dev environment
  • Loading branch information
aidewoode committed Jun 16, 2019
1 parent 8830f8d commit 878fcf8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,17 @@ For test, you can run `bundle exec jekyll serve` and open your browser at `http:

For more information you can see here <https://jekyllrb.com/docs/themes/>.

You can also use docker-compose to set up development environment.

Just like this:

$ docker-compose run --rm app bundle
$ docker-compose up

## Build gem

$ gem build jekyll-theme-mint.gemspec

## License

The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
13 changes: 13 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '3.0'
services:
app:
image: ruby:2.6.0
volumes:
- .:/app
- bundler_data:/usr/local/bundle
working_dir: /app
command: ["jekyll", "server", "--host", "0.0.0.0"]
ports:
- 4000:4000
volumes:
bundler_data:
4 changes: 2 additions & 2 deletions jekyll-theme-mint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = 'jekyll-theme-mint'
spec.version = '1.0.2'
spec.version = '1.0.3'
spec.authors = ['aidewoode']
spec.email = ['aidewoode@gmail.com']

Expand All @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
end

spec.add_runtime_dependency 'jekyll', '~> 3.8'
spec.add_runtime_dependency 'jekyll-feed', '~> 0.10.0'
spec.add_runtime_dependency 'jekyll-feed', '~> 0.11.0'
spec.add_runtime_dependency 'jekyll-seo-tag', '~> 2.5.0', '>= 2.5.0'

spec.add_development_dependency 'bundler', '~> 1.16'
Expand Down

0 comments on commit 878fcf8

Please sign in to comment.