Sha256: 9cd4edf7cfdb4d3e69a6734cdc5b7ec7edbc53cbcbaaaf6c55e9379a3c8fa230
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'torm/version' Gem::Specification.new do |spec| spec.name = 'torm' spec.version = Torm::VERSION spec.authors = ['Wes Oldenbeuving'] spec.email = ['narnach@gmail.com'] spec.summary = %q{Ruby rules engine} spec.description = %q{Rules engine. Named after the Forgotten Realms god of Law.} spec.homepage = '' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] # Ruby 2.1 introduces required named keywords spec.required_ruby_version = '>= 2.1', '< 4.0' # MultiJson follow Semantic Versioning, so any 1.x should work. spec.add_dependency 'multi_json', '~> 1.0' # Defaults from generating the gemspec spec.add_development_dependency 'bundler', '>= 1.7', '< 3.0' spec.add_development_dependency 'rake', '~> 12.3' spec.add_development_dependency 'minitest', '~> 5.12' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
torm-0.3.0 | torm.gemspec |