aboutsummaryrefslogtreecommitdiffstats
path: root/dbshell-rails.gemspec
diff options
context:
space:
mode:
authorTeddy Wing2017-04-29 11:24:01 +0200
committerTeddy Wing2017-04-29 11:31:06 +0200
commitf398c5b80f3b33593ea4e31f9b260017ea0d6657 (patch)
treec82d0cc8a86434eb98856302cebed23b7d2a9dca /dbshell-rails.gemspec
downloaddbshell-rails-f398c5b80f3b33593ea4e31f9b260017ea0d6657.tar.bz2
Generate Ruby Gem contents with Bundler
Created from: $ bundle gem dbshell-rails
Diffstat (limited to 'dbshell-rails.gemspec')
-rw-r--r--dbshell-rails.gemspec22
1 files changed, 22 insertions, 0 deletions
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