Sha256: b0a556b753f451f92ed8a599fcb8922ef09f019f2e5de892548e6fc60d603fb4
Contents?: true
Size: 1012 Bytes
Versions: 2
Compression:
Stored size: 1012 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "script/version" Gem::Specification.new do |spec| spec.name = "script" spec.version = Script::VERSION spec.authors = ["bmarkons"] spec.email = ["mamaveb@gmail.com"] spec.summary = %q{Ruby scripting} spec.description = %q{Gives you a hand with composing neat Ruby scripts.} spec.homepage = "https://github.com/bmarkons/script" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "colorize" spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "byebug" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
script-0.0.4 | script.gemspec |
script-0.0.3 | script.gemspec |