diff options
-rw-r--r-- | README.markdown | 8 | ||||
-rw-r--r-- | bundler.gemspec | 2 | ||||
-rw-r--r-- | lib/bundler.rb | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/README.markdown b/README.markdown index 6e36c40691..cfc40887c7 100644 --- a/README.markdown +++ b/README.markdown @@ -63,13 +63,13 @@ such as testing or deployment. You can specify groups of gems in the Gemfile using the following syntax: - gem "nokogiri", :group => :test + gem "nokogiri", :group => :test - # or + # or - group :test do + group :test do gem "webrat" - end + end Note that Bundler adds all the gems without an explicit group name to the `:default` group. diff --git a/bundler.gemspec b/bundler.gemspec index 5506125cdd..b208291800 100644 --- a/bundler.gemspec +++ b/bundler.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = %q{bundler} - s.version = "0.9.1.pre1" + s.version = "0.9.1" s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if s.respond_to? :required_rubygems_version= s.authors = ["Carl Lerche", "Yehuda Katz"] diff --git a/lib/bundler.rb b/lib/bundler.rb index 9e5fb019b4..0d9e65c209 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -4,7 +4,7 @@ require 'yaml' require 'bundler/rubygems' module Bundler - VERSION = "0.9.1.pre1" + VERSION = "0.9.1" autoload :Definition, 'bundler/definition' autoload :Dependency, 'bundler/dependency' |