public
Fork of wycats/merb-plugins
Description: Merb Plugins: Even more modules to hook up your Merb installation
Homepage: http://www.merbivore.com
Clone URL: git://github.com/auser/merb-plugins.git
prep for 0.9.1 release
ivey (author)
Fri Feb 29 20:20:48 -0800 2008
commit  b4193b785863625e78a239cc202b13480455854c
tree    98013a051b7643b5ecacf61af15c99ae7d666226
parent  d4cc0d62babf53d5b0e198eaa37118fec58fb175
...
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
30
...
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
0
@@ -27,3 +27,16 @@ namespace :install do
0
     end
0
   end
0
 end
0
+
0
+
0
+desc "Bundle up all the merb-plugins gems"
0
+task :bundle do
0
+ mkdir_p "bundle"
0
+ gems.each do |gem|
0
+ File.open("#{gem}/Rakefile") do |rakefile|
0
+ rakefile.read.detect {|l| l =~ /^VERSION\s*=\s*"(.*)"$/ }
0
+ sh %{cd #{gem} ; rake package ; cd ..}
0
+ sh %{cp #{gem}/pkg/#{gem}-#{$1}.gem bundle/}
0
+ end
0
+ end
0
+end
0
\ No newline at end of file
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_activerecord"
0
 NAME = "merb_activerecord"
0
-VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Duane Johnson"
0
 EMAIL = "canadaduane@gmail.com"
0
 HOMEPAGE = "http://merbivore.com"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency("merb-core", ">= 0.9")
0
+ s.add_dependency("merb-core", ">= 0.9.1")
0
   s.require_path = "lib"
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,activerecord_generators}/**/*")
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_datamapper"
0
 NAME = "merb_datamapper"
0
-VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Jason Toy"
0
 EMAIL = "jtoy@rubynow.com"
0
 HOMEPAGE = "http://merbivore.com"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9')
0
+ s.add_dependency('merb-core', '>= 0.9.1')
0
   s.add_dependency('datamapper', '>= 0.2.3')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
...
5
6
7
8
 
9
10
11
...
17
18
19
20
 
21
22
23
...
26
27
28
29
 
30
31
32
...
39
40
41
42
 
43
44
45
...
5
6
7
 
8
9
10
11
...
17
18
19
 
20
21
22
23
...
26
27
28
 
29
30
31
32
...
39
40
41
 
42
43
44
45
0
@@ -5,7 +5,7 @@ require 'spec/rake/spectask'
0
 
0
 PLUGIN = "merb_helpers"
0
 NAME = "merb_helpers"
0
-GEM_VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Yehuda Katz"
0
 EMAIL = "wycats@gmail.com"
0
 HOMEPAGE = "http://merb.rubyforge.org/"
0
@@ -17,7 +17,7 @@ SUDO = windows ? "" : "sudo"
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.name = NAME
0
- s.version = GEM_VERSION
0
+ s.version = VERSION
0
   s.platform = Gem::Platform::RUBY
0
   s.has_rdoc = true
0
   s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
0
@@ -26,7 +26,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency("merb-core", ">=0.9")
0
+ s.add_dependency("merb-core", ">=0.9.1")
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
0
@@ -39,7 +39,7 @@ end
0
 
0
 desc "Run :package and install resulting .gem"
0
 task :install => [:package] do
0
- sh %{#{SUDO} gem install pkg/#{NAME}-#{GEM_VERSION} --no-rdoc --no-ri}
0
+ sh %{#{SUDO} gem install pkg/#{NAME}-#{VERSION} --no-rdoc --no-ri}
0
 end
0
 
0
 Rake::RDocTask.new do |rdoc|
...
4
5
6
7
 
8
9
10
...
21
22
23
24
 
25
26
27
...
4
5
6
 
7
8
9
10
...
21
22
23
 
24
25
26
27
0
@@ -4,7 +4,7 @@ require 'spec/rake/spectask'
0
 
0
 PLUGIN = "merb_param_protection"
0
 NAME = "merb_param_protection"
0
-VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Lance Carlson"
0
 EMAIL = "lancecarlson@gmail.com"
0
 HOMEPAGE = "http://merb.devjavu.com"
0
@@ -21,7 +21,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   #s.homepage = HOMEPAGE
0
- s.add_dependency('merb', '>= 0.9.0')
0
+ s.add_dependency('merb', '>= 0.9.1')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_rspec"
0
 NAME = "merb_rspec"
0
-VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Yehuda Katz"
0
 EMAIL = "ykatz@engineyard.com"
0
 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-test/"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9.0')
0
+ s.add_dependency('merb-core', '>= 0.9.1')
0
   s.add_dependency('rspec', '>= 1.1.3')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
...
3
4
5
6
 
7
8
9
...
24
25
26
27
 
28
29
30
...
3
4
5
 
6
7
8
9
...
24
25
26
 
27
28
29
30
0
@@ -3,7 +3,7 @@ require "rake/gempackagetask"
0
 
0
 PLUGIN = "merb_sequel"
0
 NAME = "merb_sequel"
0
-VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Wayne E. Seguin, Lance Carlson"
0
 EMAIL = "wayneeseguin@gmail.com, lancecarlson@gmail.com"
0
 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_sequel/"
0
@@ -24,7 +24,7 @@ specification = Gem::Specification.new do |spec|
0
   spec.extra_rdoc_files = ["README", "LICENSE", 'TODO']
0
   # Dependencies
0
   #spec.add_dependency("merb", ">= 0.9")
0
- spec.add_dependency("merb-core", ">= 0.9") # This will probably only be temporary until there is an official merb gem greater than 0.9
0
+ spec.add_dependency("merb-core", ">= 0.9.1") # This will probably only be temporary until there is an official merb gem greater than 0.9
0
   spec.add_dependency("sequel", ">= 1.0.0")
0
   spec.add_dependency("sequel_model", ">= 0.3.3")
0
   spec.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*")
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_test_unit"
0
 NAME = "merb_test_unit"
0
-VERSION = "0.9.0"
0
+VERSION = "0.9.1"
0
 AUTHOR = "Yehuda Katz"
0
 EMAIL = "ykatz@engineyard.com"
0
 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-test_unit/"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9.0')
0
+ s.add_dependency('merb-core', '>= 0.9.1')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,test_unit_generators}/**/*")

Comments

    No one has commented yet.