234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
# File 'lib/cyborg/command/scaffold.rb', line 234
def gemspec
%Q{# coding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "#{spec.name}/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "#{spec.name}"
spec.version = #{modulize(gem)}::VERSION
spec.authors = #{spec.authors}
spec.email = #{spec.email}
spec.summary = "Summary of your gem."
spec.description = "Description of your gem (usually longer)."
spec.license = "#{spec.license}"
spec.files = Dir["{app,lib,public,config}/**/*", "LICENSE.txt", "README.md"]
spec.require_paths = ["lib"]
spec.add_dependency "rails", ">= 4"
spec.add_runtime_dependency "cyborg"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
end
}
end
|