From f398c5b80f3b33593ea4e31f9b260017ea0d6657 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 29 Apr 2017 11:24:01 +0200 Subject: Generate Ruby Gem contents with Bundler Created from: $ bundle gem dbshell-rails --- dbshell-rails.gemspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 dbshell-rails.gemspec (limited to 'dbshell-rails.gemspec') diff --git a/dbshell-rails.gemspec b/dbshell-rails.gemspec new file mode 100644 index 0000000..e1a8659 --- /dev/null +++ b/dbshell-rails.gemspec @@ -0,0 +1,22 @@ +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'dbshell/rails/version' + +Gem::Specification.new do |spec| + spec.name = "dbshell-rails" + spec.version = Dbshell::Rails::VERSION + spec.authors = ["Teddy Wing"] + spec.summary = %q{TODO: Write a short summary. Required.} + spec.description = %q{TODO: Write a longer description. Optional.} + spec.homepage = "" + spec.license = "MIT" + + spec.files = `git ls-files -z`.split("\x0") + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.require_paths = ["lib"] + + spec.add_development_dependency "bundler", "~> 1.7" + spec.add_development_dependency "rake", "~> 10.0" +end -- cgit v1.2.3