forked from wycats/merb-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6eb72a
commit 062287a
Showing
6 changed files
with
14 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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}/**/*") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/" | ||
|
@@ -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}/**/*") | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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}/**/*") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/" | ||
|
@@ -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}/**/*") | ||
|