aboutsummaryrefslogtreecommitdiffstats
path: root/activefile.gemspec
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-06-30 19:12:58 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2017-06-30 19:12:58 +0200
commitdd50144bcd4dbd605995123ab5afc99e40e9a630 (patch)
tree81698d44cf2f9dd62e24a95f945f6904689be2f2 /activefile.gemspec
downloadrails-dd50144bcd4dbd605995123ab5afc99e40e9a630.tar.gz
rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.tar.bz2
rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.zip
First sketching
Diffstat (limited to 'activefile.gemspec')
-rw-r--r--activefile.gemspec20
1 files changed, 20 insertions, 0 deletions
diff --git a/activefile.gemspec b/activefile.gemspec
new file mode 100644
index 0000000000..20deecff23
--- /dev/null
+++ b/activefile.gemspec
@@ -0,0 +1,20 @@
+Gem::Specification.new do |s|
+ s.name = 'activefile'
+ s.version = '0.1'
+ s.authors = 'David Heinemeier Hansson'
+ s.email = 'david@basecamp.com'
+ s.summary = 'Store files in Rails applications'
+ s.homepage = 'https://github.com/rails/activefile'
+ s.license = 'MIT'
+
+ s.required_ruby_version = '>= 1.9.3'
+
+ s.add_dependency 'activesupport', '>= 5.1'
+ s.add_dependency 'activerecord', '>= 5.1'
+ s.add_dependency 'activejob', '>= 5.1'
+
+ s.add_development_dependency 'bundler', '~> 1.15'
+
+ s.files = `git ls-files`.split("\n")
+ s.test_files = `git ls-files -- test/*`.split("\n")
+end