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

This commit is contained in:
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.8.7
- 1.9.2 - 1.9.2
- 1.9.3 - 1.9.3
- 2.0.0
- jruby-18mode - jruby-18mode
- jruby-19mode - jruby-19mode
@ -16,3 +17,4 @@ matrix:
allow_failures: allow_failures:
- rvm: jruby-18mode - 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 # Specify your gem's dependencies in <%= name %>.gemspec
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 %>" gem "middleman", "~><%= Middleman::VERSION %>"

View file

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