Skip to content

Commit

Permalink
switch to ruby 1.9.2 by default, release as 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ddollar committed Dec 16, 2010
1 parent 1c01b5d commit 88b55d1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 50 deletions.
2 changes: 2 additions & 0 deletions README.rdoc
@@ -1,3 +1,5 @@
NOTE: If you're using Ruby 1.8.x please use the 1.x series of rack-debug

Install

$ gem install rack-debug
Expand Down
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

6 changes: 6 additions & 0 deletions lib/rack/debug/version.rb
@@ -0,0 +1,6 @@
module Rack
module Debug
VERSION = "2.0.0"
end
end

64 changes: 15 additions & 49 deletions rack-debug.gemspec
@@ -1,55 +1,21 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "rack/debug/version"

Gem::Specification.new do |s|
s.name = %q{rack-debug}
s.version = "1.4.2"
Gem::Specification.new do |gem|
gem.name = "rack-debug"
gem.version = Rack::Debug::VERSION

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["David Dollar"]
s.date = %q{2010-01-04}
s.description = %q{
Rack::Debug adds a middlerware interface to ruby-debug
http://github.com/github/rack-debug
gem.author = "David Dollar"
gem.email = "ddollar@gmail.com"

}
s.email = %q{<ddollar@gmail.com>}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
".gitignore",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/rack-debug.rb",
"lib/rack-debug/debugger.rb",
"lib/rack-debug/tasks.rb",
"lib/rack/debug.rb",
"rack-debug.gemspec"
]
s.homepage = %q{http://github.com/ddollar/rack-debug}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Rack::Debug adds a middleware interface to ruby-debug}
gem.summary = "A Rack-middleware interface to ruby-debug"
gem.description = "Rack::Debug is a middleware that provides a simple interface to ruby-debug. Helps debug apps running in Passenger."
gem.homepage = "http://github.com/ddollar/rack-debug"

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
gem.files = Dir["**/*"].select { |d| d =~ %r{^(README|bin/|data/|ext/|lib/|spec/|test/)} }

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack>, [">= 1.0"])
s.add_runtime_dependency(%q<ruby-debug>, [">= 0.10"])
else
s.add_dependency(%q<rack>, [">= 1.0"])
s.add_dependency(%q<ruby-debug>, [">= 0.10"])
end
else
s.add_dependency(%q<rack>, [">= 1.0"])
s.add_dependency(%q<ruby-debug>, [">= 0.10"])
end
end
gem.add_dependency "rack", ">= 1.0"
gem.add_dependency "ruby-debug19", "~> 0.11.6"

gem.required_ruby_version = ">= 1.9.2"
end

0 comments on commit 88b55d1

Please sign in to comment.