Skip to content

Commit 325168a

Browse files
author
Kenneth Geerts
committed
Release version 0.1
1 parent 933fcc2 commit 325168a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

json_logic.gemspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ Gem::Specification.new do |spec|
1010
spec.email = ['[email protected]']
1111
spec.homepage = 'http://jsonlogic.com'
1212
spec.summary = 'Build complex rules, serialize them as JSON, and execute them in ruby'
13-
spec.description = 'See http://jsonlogic.com'
13+
spec.description = 'Build complex rules, serialize them as JSON, and execute them in ruby. See http://jsonlogic.com'
1414
spec.license = 'MIT'
1515

1616
spec.files = `git ls-files -z`.split("\x0").reject do |f|
1717
f.match(%r{^(test|spec|features)/})
1818
end
1919
spec.require_paths = ['lib']
2020

21+
spec.required_ruby_version = '>= 2.3'
22+
2123
spec.add_development_dependency 'bundler', '~> 1.13'
2224
spec.add_development_dependency 'rake', '~> 10.0'
2325
spec.add_development_dependency 'minitest', '~> 5.0'

lib/json_logic/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module JSONLogic
2-
VERSION = '0.0.1'
2+
VERSION = '0.1'
33
end

0 commit comments

Comments
 (0)