Sha256: 84aca95f0f05b79bfe92a9f8c99752af83fb8db0f38dced0730a9a2caddb8b75
Contents?: true
Size: 1.97 KB
Versions: 5
Compression:
Stored size: 1.97 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "roro/version" Gem::Specification.new do |spec| spec.name = "roro" spec.version = Roro::VERSION spec.authors = ["schadenfred"] spec.email = ["fred.schoeneman@gmail.com"] spec.summary = %q{Containerization framwork for Ruby on Rails applications.} spec.description = %q{Roro is a containerization and continuous integration framework for Ruby on Rails applications. Like Rails, it favors convention over configuration "...for programmer happiness and sustainable productivity."} spec.homepage = "https://github.com/schadenfred/roro" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/schadenfred/roro" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.executables << 'roro' # spec.bindir = "exe" # spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "thor", "0.20.3" spec.add_dependency "os", "1.0.0" spec.add_dependency "sshkit", "1.18.2" spec.add_dependency "handsome_fencer-crypto", "0.1.6" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "handsome_fencer-test", "0.1.1" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
roro-0.3.2 | roro.gemspec |
roro-0.3.1 | roro.gemspec |
roro-0.3.0 | roro.gemspec |
roro-0.2.5 | roro.gemspec |
roro-0.2.4 | roro.gemspec |