Sha256: 533731f3684c88c6d033d46521b1043b82178add69cf3060b37e1dee3eb6ab12
Contents?: true
Size: 1.31 KB
Versions: 8
Compression:
Stored size: 1.31 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "create_new_gem_mehak/version" Gem::Specification.new do |spec| spec.name = "create_new_gem_mehak" spec.version = CreateNewGemMehak::VERSION spec.authors = ["Mehak Singla"] spec.email = ["mehaksingla1897@gmail.com"] spec.summary = %q{Creates a Service Generator inisde your app} spec.description = %q{This gem creates a Service Generator so you can use it as a part of rails generators} spec.homepage = "https://github.com/mehaksingla1897/starlance-docker" spec.license = "MIT" # 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.files = Dir["{lib,config}/**/*", 'README.md', 'LICENSE', 'create_new_gem_mehak.gemspec', 'Gemfile'] spec.bindir = "exe" # spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" end
Version data entries
8 entries across 8 versions & 1 rubygems