Sha256: 97cabdff37183167b6c8ef93002c27adc4ec14186f8d6ed35bd4ba35f81ba5d6
Contents?: true
Size: 1.38 KB
Versions: 3
Compression:
Stored size: 1.38 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "sanctuary/planter/version" Gem::Specification.new do |spec| spec.name = "sanctuary-planter" spec.version = Sanctuary::Planter::VERSION spec.authors = ["Kevin-Kawai"] spec.email = ["kevin.fredricks@gmail.com"] spec.summary = "Summary" spec.description = "Description" spec.homepage = "https://www.github.com" spec.license = "MIT" spec.metadata["allowed_push_host"] = "https://rubygems.org/'" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://www.github.com" spec.metadata["changelog_uri"] = "https://www.github.com" # 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.bindir = "bin" spec.executables = ["planter"] spec.require_paths = ["lib"] spec.add_runtime_dependency "sanctuary", "~> 0.1.6" spec.add_development_dependency "bundler", "~> 2.0" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "pry" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sanctuary-planter-0.1.3 | sanctuary-planter.gemspec |
sanctuary-planter-0.1.2 | sanctuary-planter.gemspec |
sanctuary-planter-0.1.1 | sanctuary-planter.gemspec |