Skip to content

Commit

Permalink
Release new Proc#curry and Proc#lambda? (Thanks Konstantine Haase) v …
Browse files Browse the repository at this point in the history
…2.1.0
  • Loading branch information
marcandre committed Apr 16, 2011
1 parent 580ed90 commit be2673e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.rdoc
Expand Up @@ -179,6 +179,7 @@ Libraries have not been backported. I am aware of the following backport gems:
Thanks for the bug reports and patches, in particular the repeat offenders:

* Arto Bendiken ( bendiken[http://github.com/bendiken] )
* Konstantin Haase ( rkh[https://github.com/rkh])
* Roger Pack ( rdp[http://github.com/rdp] )

The best way to submit a patch is to also submit a patch to RubySpec[https://github.com/rubyspec/rubyspec] and then a patch to backports that make it pass the spec. To test rubyspec along with backports, one way to test this is:
Expand Down
4 changes: 2 additions & 2 deletions VERSION.yml
@@ -1,5 +1,5 @@
---
:patch: 0
:build:
:major: 2
:minor: 0
:patch: 3
:minor: 1
10 changes: 6 additions & 4 deletions backports.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{backports}
s.version = "2.0.3"
s.version = "2.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Marc-Andr\303\251 Lafortune"]
s.date = %q{2011-03-28}
s.date = %q{2011-04-16}
s.description = %q{ Essential backports that enable some of the really nice features of ruby 1.8.7, ruby 1.9 and rails from ruby 1.8.6 and earlier.
}
s.email = %q{github@marc-andre.ca}
Expand Down Expand Up @@ -72,6 +72,7 @@ Gem::Specification.new do |s|
"lib/backports/1.9.1/io.rb",
"lib/backports/1.9.1/kernel.rb",
"lib/backports/1.9.1/math.rb",
"lib/backports/1.9.1/proc.rb",
"lib/backports/1.9.1/string.rb",
"lib/backports/1.9.1/symbol.rb",
"lib/backports/1.9.2.rb",
Expand Down Expand Up @@ -110,6 +111,7 @@ Gem::Specification.new do |s|
"test/method_test.rb",
"test/module_test.rb",
"test/object_test.rb",
"test/proc_test.rb",
"test/regexp_test.rb",
"test/string_test.rb",
"test/symbol_test.rb",
Expand All @@ -119,7 +121,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8", "--title", "Backports library", "--main", "README.rdoc", "--line-numbers", "--inline-source"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{backports}
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.6.0}
s.summary = %q{Backports of Ruby 1.8.7+ for older ruby.}
s.test_files = [
"test/array_test.rb",
Expand All @@ -134,14 +136,14 @@ Gem::Specification.new do |s|
"test/method_test.rb",
"test/module_test.rb",
"test/object_test.rb",
"test/proc_test.rb",
"test/regexp_test.rb",
"test/string_test.rb",
"test/symbol_test.rb",
"test/test_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
Expand Down

0 comments on commit be2673e

Please sign in to comment.