Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Version bump to 0.1.5: freeze mongoid version at 2.3 (specs fall on 2.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikdiet committed Jan 10, 2012
1 parent 579654f commit 4aba42f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,6 +1,6 @@
source 'http://rubygems.org'

gem 'mongoid', '>= 2.1', :git => 'git://github.com/mongoid/mongoid.git', :tag => 'v2.3.4'
gem 'mongoid', '~> 2.3', :git => 'git://github.com/mongoid/mongoid.git', :tag => 'v2.4.0'
gem 'bson_ext', '>= 1.3'

group :development, :test do
Expand Down
17 changes: 9 additions & 8 deletions Gemfile.lock
@@ -1,9 +1,9 @@
GIT
remote: git://github.com/mongoid/mongoid.git
revision: d8aa8a7730d8c352ecf5027a57764ebf92c0f363
tag: v2.3.4
revision: d4ae10be8e972e3a52371ed35692cde504190675
tag: v2.4.0
specs:
mongoid (2.3.4)
mongoid (2.4.0)
activemodel (~> 3.1)
mongo (~> 1.3)
tzinfo (~> 0.3.22)
Expand All @@ -18,8 +18,9 @@ GEM
activesupport (3.1.3)
multi_json (~> 1.0)
archive-tar-minitar (0.5.2)
bson (1.5.1)
bson_ext (1.4.0)
bson (1.5.2)
bson_ext (1.5.2)
bson (= 1.5.2)
builder (3.0.0)
columnize (0.3.4)
database_cleaner (0.6.7)
Expand All @@ -32,8 +33,8 @@ GEM
rake
linecache19 (0.5.12)
ruby_core_source (>= 0.1.4)
mongo (1.5.1)
bson (= 1.5.1)
mongo (1.5.2)
bson (= 1.5.2)
mongoid-rspec (1.4.4)
mongoid (~> 2.0)
rspec (~> 2)
Expand Down Expand Up @@ -67,7 +68,7 @@ DEPENDENCIES
bson_ext (>= 1.3)
database_cleaner
jeweler
mongoid (>= 2.1)!
mongoid (~> 2.3)!
mongoid-rspec
rdoc
rspec
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.4
0.1.5
8 changes: 4 additions & 4 deletions mongoid_globalize.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mik-die"]
s.date = "2011-12-13"
s.date = "2012-01-10"
s.description = "Library for translating Mongoid documents, based on Globalize3 principles"
s.email = "MikDiet@gmail.com"
s.extra_rdoc_files = [
Expand Down Expand Up @@ -56,7 +56,7 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mongoid>, [">= 2.1"])
s.add_runtime_dependency(%q<mongoid>, ["~> 2.3"])
s.add_runtime_dependency(%q<bson_ext>, [">= 1.3"])
s.add_development_dependency(%q<rdoc>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
Expand All @@ -65,7 +65,7 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<ruby-debug19>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
else
s.add_dependency(%q<mongoid>, [">= 2.1"])
s.add_dependency(%q<mongoid>, ["~> 2.3"])
s.add_dependency(%q<bson_ext>, [">= 1.3"])
s.add_dependency(%q<rdoc>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
Expand All @@ -75,7 +75,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<jeweler>, [">= 0"])
end
else
s.add_dependency(%q<mongoid>, [">= 2.1"])
s.add_dependency(%q<mongoid>, ["~> 2.3"])
s.add_dependency(%q<bson_ext>, [">= 1.3"])
s.add_dependency(%q<rdoc>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
Expand Down

0 comments on commit 4aba42f

Please sign in to comment.