Skip to content

Commit

Permalink
Bump versions to 0.9.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed May 9, 2008
1 parent c6eb72a commit 062287a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions merb_activerecord/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'rake/gempackagetask'

PLUGIN = "merb_activerecord"
NAME = "merb_activerecord"
VERSION = "0.9.3"
VERSION = "0.9.4"
AUTHOR = "Duane Johnson"
EMAIL = "[email protected]"
HOMEPAGE = "http://merbivore.com"
Expand All @@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
s.add_dependency("merb-core", ">= 0.9.3")
s.add_dependency("merb-core", ">= 0.9.4")
s.require_path = "lib"
s.autorequire = PLUGIN
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,activerecord_generators}/**/*")
Expand Down
6 changes: 3 additions & 3 deletions merb_helpers/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require 'spec/rake/spectask'

PLUGIN = "merb_helpers"
NAME = "merb_helpers"
VERSION = "0.9.3"
VERSION = "0.9.4"
AUTHOR = "Yehuda Katz"
EMAIL = "[email protected]"
HOMEPAGE = "http://merb.rubyforge.org/"
Expand All @@ -26,7 +26,7 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
s.add_dependency("merb-core", ">=0.9.3")
s.add_dependency("merb-core", ">=0.9.4")
s.require_path = 'lib'
s.autorequire = PLUGIN
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
Expand Down Expand Up @@ -55,7 +55,7 @@ end

Spec::Rake::SpecTask.new do |t|
t.spec_opts = ["--format", "specdoc", "--colour"]
t.spec_files = Dir['spec/**/*_spec.rb'].sort
t.spec_files = Dir['spec/**/*_spec.rb'].sort
end

desc "Run all specs and generate an rcov report"
Expand Down
4 changes: 2 additions & 2 deletions merb_param_protection/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require 'spec/rake/spectask'

PLUGIN = "merb_param_protection"
NAME = "merb_param_protection"
VERSION = "0.9.3"
VERSION = "0.9.4"
AUTHOR = "Lance Carlson"
EMAIL = "[email protected]"
HOMEPAGE = "http://merb.devjavu.com"
Expand All @@ -21,7 +21,7 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
#s.homepage = HOMEPAGE
s.add_dependency('merb-core', '>= 0.9.3')
s.add_dependency('merb-core', '>= 0.9.4')
s.require_path = 'lib'
s.autorequire = PLUGIN
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
Expand Down
7 changes: 3 additions & 4 deletions merb_sequel/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require "rake/gempackagetask"

PLUGIN = "merb_sequel"
NAME = "merb_sequel"
VERSION = "0.9.3"
VERSION = "0.9.4"
AUTHOR = "Wayne E. Seguin, Lance Carlson"
EMAIL = "[email protected], [email protected]"
HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_sequel/"
Expand All @@ -22,9 +22,8 @@ specification = Gem::Specification.new do |spec|
spec.autorequire = PLUGIN
spec.require_path = "lib"
spec.extra_rdoc_files = ["README", "LICENSE", 'TODO']
# Dependencies
#spec.add_dependency("merb", ">= 0.9")
spec.add_dependency("merb-core", ">= 0.9.3") # This will probably only be temporary until there is an official merb gem greater than 0.9

spec.add_dependency("merb-core", ">= 0.9.4")
spec.add_dependency("sequel", ">= 1.4.0")
spec.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*")
end
Expand Down
4 changes: 2 additions & 2 deletions merb_stories/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'rake/gempackagetask'

PLUGIN = "merb_stories"
NAME = "merb_stories"
VERSION = "0.9.3"
VERSION = "0.9.4"
AUTHOR = "Yehuda Katz"
EMAIL = "[email protected]"
HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-test/"
Expand All @@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
s.add_dependency('merb-core', '>= 0.9.3')
s.add_dependency('merb-core', '>= 0.9.4')
s.add_dependency('rspec', '>= 1.1.3')
s.require_path = 'lib'
s.autorequire = PLUGIN
Expand Down
4 changes: 2 additions & 2 deletions merb_test_unit/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'rake/gempackagetask'

PLUGIN = "merb_test_unit"
NAME = "merb_test_unit"
VERSION = "0.9.3"
VERSION = "0.9.4"
AUTHOR = "Yehuda Katz"
EMAIL = "[email protected]"
HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-test_unit/"
Expand All @@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
s.add_dependency('merb-core', '>= 0.9.3')
s.add_dependency('merb-core', '>= 0.9.4')
s.require_path = 'lib'
s.autorequire = PLUGIN
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,test_unit_generators}/**/*")
Expand Down

0 comments on commit 062287a

Please sign in to comment.