-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/quirkey/vegas
- Loading branch information
Showing
3 changed files
with
18 additions
and
10 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
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
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,11 +5,11 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = %q{vegas} | ||
s.version = "0.1.2" | ||
s.version = "0.1.3" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Aaron Quint"] | ||
s.date = %q{2009-08-30} | ||
s.date = %q{2010-01-08} | ||
s.description = %q{Vegas aims to solve the simple problem of creating executable versions of Sinatra/Rack apps. It includes a class Vegas::Runner that wraps Rack/Sinatra applications and provides a simple command line interface and launching mechanism.} | ||
s.email = ["[email protected]"] | ||
s.extra_rdoc_files = [ | ||
|
@@ -24,7 +24,6 @@ Gem::Specification.new do |s| | |
"Rakefile", | ||
"lib/vegas.rb", | ||
"lib/vegas/runner.rb", | ||
"pkg/vegas-0.1.1.gem", | ||
"test/apps.rb", | ||
"test/test_app/bin/test_app", | ||
"test/test_app/bin/test_rack_app", | ||
|
@@ -52,17 +51,20 @@ Gem::Specification.new do |s| | |
|
||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<rack>, [">= 1.0.0"]) | ||
s.add_development_dependency(%q<bacon>, [">= 1.1.0"]) | ||
s.add_development_dependency(%q<sinatra>, [">= 0.9.4"]) | ||
s.add_development_dependency(%q<mocha>, ["~> 0.9.8"]) | ||
s.add_development_dependency(%q<bacon>, ["~> 1.1.0"]) | ||
s.add_development_dependency(%q<sinatra>, ["~> 0.9.4"]) | ||
else | ||
s.add_dependency(%q<rack>, [">= 1.0.0"]) | ||
s.add_dependency(%q<bacon>, [">= 1.1.0"]) | ||
s.add_dependency(%q<sinatra>, [">= 0.9.4"]) | ||
s.add_dependency(%q<mocha>, ["~> 0.9.8"]) | ||
s.add_dependency(%q<bacon>, ["~> 1.1.0"]) | ||
s.add_dependency(%q<sinatra>, ["~> 0.9.4"]) | ||
end | ||
else | ||
s.add_dependency(%q<rack>, [">= 1.0.0"]) | ||
s.add_dependency(%q<bacon>, [">= 1.1.0"]) | ||
s.add_dependency(%q<sinatra>, [">= 0.9.4"]) | ||
s.add_dependency(%q<mocha>, ["~> 0.9.8"]) | ||
s.add_dependency(%q<bacon>, ["~> 1.1.0"]) | ||
s.add_dependency(%q<sinatra>, ["~> 0.9.4"]) | ||
end | ||
end | ||
|