Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/quirkey/vegas
Browse files Browse the repository at this point in the history
  • Loading branch information
greatseth committed Feb 5, 2010
2 parents dca075f + e908c14 commit 944af9c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
6 changes: 6 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
== 0.1.3 2010-01-08

* Fixed: Runner escapes :app_name to make it a valid string for using in paths (thanks greatseth!)
* Fixed: Runner respects a server setting on Sinatra apps to use that specific Rack handler. (thanks greatseth!)
* New: Tested against Rack 1.1

== 0.1.2 2009-12-28

* New
Expand Down
2 changes: 1 addition & 1 deletion lib/vegas.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
$LOAD_PATH.unshift File.dirname(__FILE__)

module Vegas
VERSION = "0.1.2"
VERSION = "0.1.3"
WINDOWS = !!(RUBY_PLATFORM =~ /(mingw|bccwin|wince|mswin32)/i)

autoload :Runner, 'vegas/runner'
Expand Down
20 changes: 11 additions & 9 deletions vegas.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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",
Expand Down Expand Up @@ -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

0 comments on commit 944af9c

Please sign in to comment.