Skip to content

Commit

Permalink
Fix rack-rack dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Sutto committed Sep 6, 2009
1 parent 44466fb commit b02c7b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -32,7 +32,7 @@ task :gemspec do
s.files = (FileList["{bin,lib,public,resources,views}/**/*"].to_a + EXTRAS).sort
s.executables = FileList["bin/*"].to_a.map { |f| File.basename(f) }
s.platform = Gem::Platform::RUBY
s.add_dependency "rack-rack", ">= 1.0"
s.add_dependency "rack", ">= 1.0"
s.add_dependency "sinatra-sinatra", ">= 0.9.0"
s.add_dependency "Sutto-perennial", ">= 0.2.3"
# Add in dev. dependencies
Expand Down
8 changes: 4 additions & 4 deletions gitauth.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{gitauth}
s.version = "0.0.4.2"
s.version = "0.0.4.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Darcy Laycock"]
Expand All @@ -21,15 +21,15 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack-rack>, [">= 1.0"])
s.add_runtime_dependency(%q<rack>, [">= 1.0"])
s.add_runtime_dependency(%q<sinatra-sinatra>, [">= 0.9.0"])
s.add_runtime_dependency(%q<Sutto-perennial>, [">= 0.2.3"])
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 2.0.0"])
s.add_development_dependency(%q<redgreen>, [">= 1.0.0"])
s.add_development_dependency(%q<rr>, [">= 0.10.0"])
s.add_development_dependency(%q<rack-test>, [">= 0"])
else
s.add_dependency(%q<rack-rack>, [">= 1.0"])
s.add_dependency(%q<rack>, [">= 1.0"])
s.add_dependency(%q<sinatra-sinatra>, [">= 0.9.0"])
s.add_dependency(%q<Sutto-perennial>, [">= 0.2.3"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.0.0"])
Expand All @@ -38,7 +38,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<rack-test>, [">= 0"])
end
else
s.add_dependency(%q<rack-rack>, [">= 1.0"])
s.add_dependency(%q<rack>, [">= 1.0"])
s.add_dependency(%q<sinatra-sinatra>, [">= 0.9.0"])
s.add_dependency(%q<Sutto-perennial>, [">= 0.2.3"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.0.0"])
Expand Down
2 changes: 1 addition & 1 deletion lib/gitauth.rb
Expand Up @@ -21,7 +21,7 @@

module GitAuth

VERSION = [0, 0, 4, 2]
VERSION = [0, 0, 4, 3]
BASE_DIR = Pathname.new(__FILE__).dirname.join("..").expand_path
LIB_DIR = BASE_DIR.join("lib", "gitauth")
GITAUTH_DIR = Pathname.new("~/.gitauth/").expand_path
Expand Down

0 comments on commit b02c7b0

Please sign in to comment.