mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Modified activejob.gemspec to match other rails gems format
This commit is contained in:
parent
7c84dfb510
commit
22ee993825
1 changed files with 6 additions and 4 deletions
|
@ -1,8 +1,10 @@
|
|||
version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
s.name = 'activejob'
|
||||
s.version = '4.2.0.alpha'
|
||||
s.summary = 'Job framework with pluggable queues (will be part of Rails).'
|
||||
s.version = version
|
||||
s.summary = 'Job framework with pluggable queues.'
|
||||
s.description = 'Declare job classes that can be run by a variety of queueing backends.'
|
||||
|
||||
s.required_ruby_version = '>= 1.9.3'
|
||||
|
@ -13,9 +15,9 @@ Gem::Specification.new do |s|
|
|||
s.email = 'david@loudthinking.com'
|
||||
s.homepage = 'http://www.rubyonrails.org'
|
||||
|
||||
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.rdoc', 'lib/**/*']
|
||||
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.md', 'lib/**/*']
|
||||
s.require_path = 'lib'
|
||||
|
||||
s.add_dependency 'activesupport', '>= 4.1.0'
|
||||
s.add_dependency 'activesupport', version
|
||||
s.add_dependency 'activemodel-globalid'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue