1
0
Fork 0
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:
David Heinemeier Hansson 2014-05-19 12:39:14 +02:00
parent 079ff1f15c
commit f3a9ad7057
3 changed files with 5 additions and 10 deletions

View file

@ -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'

View file

@ -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

View file

@ -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