mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Move activemodel-globalid dependency to gemspec
This commit is contained in:
parent
079ff1f15c
commit
f3a9ad7057
3 changed files with 5 additions and 10 deletions
1
Gemfile
1
Gemfile
|
@ -6,4 +6,3 @@ gem 'resque'
|
||||||
gem 'sidekiq'
|
gem 'sidekiq'
|
||||||
gem 'sucker_punch'
|
gem 'sucker_punch'
|
||||||
gem 'delayed_job'
|
gem 'delayed_job'
|
||||||
gem 'activemodel-globalid', github: 'rails/activemodel-globalid'
|
|
13
Gemfile.lock
13
Gemfile.lock
|
@ -1,15 +1,8 @@
|
||||||
GIT
|
|
||||||
remote: git://github.com/rails/activemodel-globalid.git
|
|
||||||
revision: c9d4cfa80e9234d178617338b22728e7c08498d1
|
|
||||||
specs:
|
|
||||||
activemodel-globalid (0.1.0)
|
|
||||||
activemodel (>= 4.1.0)
|
|
||||||
activesupport (>= 4.1.0)
|
|
||||||
|
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
activejob (4.2.0.alpha)
|
activejob (4.2.0.alpha)
|
||||||
|
activemodel-globalid
|
||||||
activesupport (>= 4.1.0)
|
activesupport (>= 4.1.0)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
@ -18,6 +11,9 @@ GEM
|
||||||
activemodel (4.1.1)
|
activemodel (4.1.1)
|
||||||
activesupport (= 4.1.1)
|
activesupport (= 4.1.1)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
|
activemodel-globalid (0.1.0)
|
||||||
|
activemodel (>= 4.1.0)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
activesupport (4.1.1)
|
activesupport (4.1.1)
|
||||||
i18n (~> 0.6, >= 0.6.9)
|
i18n (~> 0.6, >= 0.6.9)
|
||||||
json (~> 1.7, >= 1.7.7)
|
json (~> 1.7, >= 1.7.7)
|
||||||
|
@ -72,7 +68,6 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
activejob!
|
activejob!
|
||||||
activemodel-globalid!
|
|
||||||
delayed_job
|
delayed_job
|
||||||
resque
|
resque
|
||||||
sidekiq
|
sidekiq
|
||||||
|
|
|
@ -17,4 +17,5 @@ Gem::Specification.new do |s|
|
||||||
s.require_path = 'lib'
|
s.require_path = 'lib'
|
||||||
|
|
||||||
s.add_dependency 'activesupport', '>= 4.1.0'
|
s.add_dependency 'activesupport', '>= 4.1.0'
|
||||||
|
s.add_dependency 'activemodel-globalid'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue