diff --git a/Gemfile b/Gemfile index 92b0ed1765..f8c97a8cab 100644 --- a/Gemfile +++ b/Gemfile @@ -6,4 +6,3 @@ gem 'resque' gem 'sidekiq' gem 'sucker_punch' gem 'delayed_job' -gem 'activemodel-globalid', github: 'rails/activemodel-globalid' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index e8e8e0eb18..1d86563133 100644 --- a/Gemfile.lock +++ b/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 remote: . specs: activejob (4.2.0.alpha) + activemodel-globalid activesupport (>= 4.1.0) GEM @@ -18,6 +11,9 @@ GEM activemodel (4.1.1) activesupport (= 4.1.1) builder (~> 3.1) + activemodel-globalid (0.1.0) + activemodel (>= 4.1.0) + activesupport (>= 4.1.0) activesupport (4.1.1) i18n (~> 0.6, >= 0.6.9) json (~> 1.7, >= 1.7.7) @@ -72,7 +68,6 @@ PLATFORMS DEPENDENCIES activejob! - activemodel-globalid! delayed_job resque sidekiq diff --git a/activejob.gemspec b/activejob.gemspec index 201f3efb31..23fd25c6c8 100644 --- a/activejob.gemspec +++ b/activejob.gemspec @@ -17,4 +17,5 @@ Gem::Specification.new do |s| s.require_path = 'lib' s.add_dependency 'activesupport', '>= 4.1.0' + s.add_dependency 'activemodel-globalid' end