@@ -4,32 +4,31 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44require 'json_logic/version'
55
66Gem ::Specification . new do |spec |
7- spec . name = " json_logic"
7+ spec . name = ' json_logic'
88 spec . version = JSONLogic ::VERSION
9- spec . authors = [ " Kenneth Geerts" ]
10- spec . email = [ " Kenneth.Geerts@up-nxt .com" ]
9+ spec . authors = [ ' Kenneth Geerts' ]
10+ spec . email = [ ' Kenneth.Geerts@gmail .com' ]
1111
12- spec . summary = %q{See http://jsonlogic.com}
13- spec . description = %q{JSONLogic parser in ruby.}
14- spec . license = " MIT"
12+ spec . summary = 'Build complex rules, serialize them as JSON, and execute them in ruby'
13+ spec . description = 'See http://jsonlogic.com'
14+ spec . license = ' MIT'
1515
1616 # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
1717 # to allow pushing to a single host or delete this section to allow pushing to any host.
1818 if spec . respond_to? ( :metadata )
1919 spec . metadata [ 'allowed_push_host' ] = "TODO: Set to 'http://mygemserver.com'"
2020 else
21- raise "RubyGems 2.0 or newer is required to protect against " \
22- "public gem pushes."
21+ raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
2322 end
2423
2524 spec . files = `git ls-files -z` . split ( "\x0 " ) . reject do |f |
2625 f . match ( %r{^(test|spec|features)/} )
2726 end
28- spec . bindir = " exe"
27+ spec . bindir = ' exe'
2928 spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
30- spec . require_paths = [ " lib" ]
29+ spec . require_paths = [ ' lib' ]
3130
32- spec . add_development_dependency " bundler" , " ~> 1.13"
33- spec . add_development_dependency " rake" , " ~> 10.0"
34- spec . add_development_dependency " minitest" , " ~> 5.0"
31+ spec . add_development_dependency ' bundler' , ' ~> 1.13'
32+ spec . add_development_dependency ' rake' , ' ~> 10.0'
33+ spec . add_development_dependency ' minitest' , ' ~> 5.0'
3534end
0 commit comments