Sha256: 72a0f419418cb658f02c2f5f16b36b6fbd3f57a933bf44890c36716e1f5688df
Contents?: true
Size: 1011 Bytes
Versions: 4
Compression:
Stored size: 1011 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "gemsmith/version" Gem::Specification.new do |s| s.name = "gemsmith" s.version = Gemsmith::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Brooke Kuhlmann"] s.email = ["brooke@redalchemist.com"] s.homepage = "http://www.redalchemist.com" s.summary = "Ruby gem skeleton generation for the professional gemsmith." s.description = "Ruby gem skeleton generation for the professional gemsmith. Includes custom settings, binary, Ruby on Rails, and RSpec support. " s.rdoc_options << "CHANGELOG.rdoc" s.add_dependency "thor", "~> 0.14.0" s.add_development_dependency "rspec" s.add_development_dependency "aruba" s.executables << "gemsmith" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gemsmith-0.5.0 | gemsmith.gemspec |
gemsmith-0.4.0 | gemsmith.gemspec |
gemsmith-0.3.0 | gemsmith.gemspec |
gemsmith-0.2.0 | gemsmith.gemspec |