aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/activestorage.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'activestorage/activestorage.gemspec')
-rw-r--r--activestorage/activestorage.gemspec18
1 files changed, 18 insertions, 0 deletions
diff --git a/activestorage/activestorage.gemspec b/activestorage/activestorage.gemspec
new file mode 100644
index 0000000000..eeefa03903
--- /dev/null
+++ b/activestorage/activestorage.gemspec
@@ -0,0 +1,18 @@
+Gem::Specification.new do |s|
+ s.name = "activestorage"
+ s.version = "0.1"
+ s.authors = "David Heinemeier Hansson"
+ s.email = "david@basecamp.com"
+ s.summary = "Attach cloud and local files in Rails applications"
+ s.homepage = "https://github.com/rails/activestorage"
+ s.license = "MIT"
+
+ s.required_ruby_version = ">= 2.2.2"
+
+ s.add_dependency "rails", ">= 5.2.0.alpha"
+
+ s.add_development_dependency "bundler", "~> 1.15"
+
+ s.files = `git ls-files`.split("\n")
+ s.test_files = `git ls-files -- test/*`.split("\n")
+end