diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2017-07-06 11:33:29 +0200 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2017-07-06 11:33:29 +0200 |
commit | c624df326a4ef36919a5195a3c5509fab97dcba3 (patch) | |
tree | a8e07aabde7548d5bd4a322a9898ad123cfa40f7 /activestorage.gemspec | |
parent | 5869045f2e71f0abdf3add19629d23a46b9fff0d (diff) | |
download | rails-c624df326a4ef36919a5195a3c5509fab97dcba3.tar.gz rails-c624df326a4ef36919a5195a3c5509fab97dcba3.tar.bz2 rails-c624df326a4ef36919a5195a3c5509fab97dcba3.zip |
ActiveVault -> ActiveStorage
Yaroslav agreed to hand over the gem name ❤️
Diffstat (limited to 'activestorage.gemspec')
-rw-r--r-- | activestorage.gemspec | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/activestorage.gemspec b/activestorage.gemspec new file mode 100644 index 0000000000..4670bd1502 --- /dev/null +++ b/activestorage.gemspec @@ -0,0 +1,21 @@ +Gem::Specification.new do |s| + s.name = "activestorage" + 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/activestorage" + 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 "actionpack", ">= 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 |