Sha256: ee589a0794f4fe437a427915741d8fd180d9c4fd583c1733f99d9ca061058259
Contents?: true
Size: 1.28 KB
Versions: 81
Compression:
Stored size: 1.28 KB
Contents
$:.push File.expand_path("lib", __dir__) # Maintain your gem's version: require "<%= namespaced_name %>/version" # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.name = "<%= name %>" spec.version = <%= camelized_modules %>::VERSION spec.authors = ["<%= author %>"] spec.email = ["<%= email %>"] spec.homepage = "TODO" spec.summary = "TODO: Summary of <%= camelized_modules %>." spec.description = "TODO: Description of <%= camelized_modules %>." 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["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] <%= '# ' if options.dev? || options.edge? -%>spec.add_dependency "rails", "<%= Array(rails_version_specifier).join('", "') %>" <% unless options[:skip_active_record] -%> spec.add_development_dependency "<%= gem_for_database[0] %>" <% end -%> end
Version data entries
81 entries across 73 versions & 6 rubygems