adapt to bundler changes, add ruby 2.0 to tests, prep release

i18n_v4
Thomas Reynolds 2013-02-24 13:44:24 -08:00
parent dd63ba164e
commit 6cee2d74f5
4 changed files with 10 additions and 4 deletions

View File

@ -2,6 +2,7 @@ rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
@ -15,4 +16,5 @@ env: TEST=true TRAVIS=true
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: jruby-19mode
- rvm: 2.0.0

View File

@ -1,4 +1,6 @@
source :rubygems
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
# Specify your gem's dependencies in <%= name %>.gemspec
gemspec

View File

@ -1,3 +1,5 @@
source :rubygems
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
gem "middleman", "~><%= Middleman::VERSION %>"

View File

@ -1,5 +1,5 @@
module Middleman
# Current Version
# @return [String]
VERSION = '3.0.12.pre.1' unless const_defined?(:VERSION)
VERSION = '3.0.12' unless const_defined?(:VERSION)
end