Sha256: 81958a825a143d9156fdf329a7e697588d1121ebfc5e4413e9ffc32929cffa57
Contents?: true
Size: 1.34 KB
Versions: 4
Compression:
Stored size: 1.34 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'deadly_serious/version' Gem::Specification.new do |spec| spec.name = 'deadly_serious' spec.version = DeadlySerious::VERSION spec.authors = ['Ronie Uliana'] spec.email = ['ronie.uliana@gmail.com'] spec.description = %q{Flow Based Programming Maestro} spec.summary = %q{Flow Based Programming maestro that relies on named pipes and Linux processes (sorry, no Windows here). That means it uses 'mechanical sympathy' with the Operating System, i.e., the S.O. is *part* of the program, it's not something *under* it.} spec.homepage = 'https://github.com/ruliana/deadly_serious' spec.license = 'MIT' spec.files = `git ls-files`.split($/).reject { |file| file =~ /^examples\// } 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'] spec.required_ruby_version = '~> 2.1' spec.add_development_dependency 'bundler', '~> 1.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'pry', '~> 0.10' spec.add_development_dependency 'guard-rspec', '~> 4.0' spec.add_dependency 'oj', '~> 2.0' spec.add_dependency 'multi_json', '~> 1.0' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
deadly_serious-1.0.2 | deadly_serious.gemspec |
deadly_serious-1.0.1 | deadly_serious.gemspec |
deadly_serious-1.0.0 | deadly_serious.gemspec |
deadly_serious-1.0.0.rc1 | deadly_serious.gemspec |