Skip to content

Commit

Permalink
Fix gem versions and bump to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tweibley committed Nov 30, 2011
1 parent 02b43ed commit 4f6eb36
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.0.3
0.0.4
4 changes: 2 additions & 2 deletions lib/rubyhaze/persisted/model.rb
@@ -1,10 +1,10 @@
gem "activesupport", "3.0.0"
gem "activesupport", "3.0.11"
require "active_support/core_ext/module/attr_accessor_with_default"
require "active_support/core_ext/object/blank"
require "active_support/concern"
require "active_support/callbacks"

gem "activemodel", "3.0.0"
gem "activemodel", "3.0.11"
require "active_model"

module RubyHaze
Expand Down
2 changes: 1 addition & 1 deletion lib/rubyhaze/persisted/shadow_class_generator.rb
@@ -1,4 +1,4 @@
gem "bitescript", "0.0.6"
gem "bitescript", "0.0.9"
require 'bitescript'

module RubyHaze
Expand Down
20 changes: 10 additions & 10 deletions rubyhaze-persisted.gemspec
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = %q{rubyhaze-persisted}
s.version = "0.0.3"
s.version = "0.0.4"
s.platform = %q{jruby}

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
Expand Down Expand Up @@ -46,20 +46,20 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rubyhaze>, ["~> 0.0.6"])
s.add_runtime_dependency(%q<bitescript>, ["= 0.0.6"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<activemodel>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<bitescript>, ["= 0.0.9"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.11"])
s.add_runtime_dependency(%q<activemodel>, ["~> 3.0.11"])
else
s.add_dependency(%q<rubyhaze>, ["~> 0.0.6"])
s.add_dependency(%q<bitescript>, ["= 0.0.6"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_dependency(%q<activemodel>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<bitescript>, ["= 0.0.9"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.11"])
s.add_runtime_dependency(%q<activemodel>, ["~> 3.0.11"])
end
else
s.add_dependency(%q<rubyhaze>, ["~> 0.0.6"])
s.add_dependency(%q<bitescript>, ["= 0.0.6"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_dependency(%q<activemodel>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<bitescript>, ["= 0.0.9"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.11"])
s.add_runtime_dependency(%q<activemodel>, ["~> 3.0.11"])
end
end

0 comments on commit 4f6eb36

Please sign in to comment.