Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Or install it yourself as:
$ gem install jsonnet
```

By default this gem will compile and install Jsonnet (v0.16.0) as part of
By default this gem will compile and install Jsonnet (v0.18.0) as part of
installation. However you can use the system version of Jsonnet if you prefer.
This would be the recommended route if you want to use a different version
of Jsonnet or are having problems installing this.
Expand Down
4 changes: 2 additions & 2 deletions ext/jsonnet/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def using_system_libraries?
require 'mini_portile2'
message "Using mini_portile version #{MiniPortile::VERSION}\n"

recipe = MiniPortile.new('jsonnet', 'v0.17.0')
recipe.files = ['https://github.com/google/jsonnet/archive/v0.17.0.tar.gz']
recipe = MiniPortile.new('jsonnet', 'v0.18.0')
recipe.files = ['https://github.com/google/jsonnet/archive/v0.18.0.tar.gz']
class << recipe

def compile
Expand Down