Skip to content

Commit

Permalink
Bump to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radar committed Jul 1, 2014
1 parent 539ef7f commit bcd6694
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion SPREE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0.beta
2.3.0
2 changes: 1 addition & 1 deletion cmd/lib/spree_cmd/extension.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def class_name
end

def spree_version
'2.3.0.beta'
'2.3.0'
end

def use_prefix(prefix)
Expand Down
4 changes: 2 additions & 2 deletions cmd/lib/spree_cmd/installer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ def add_gems
gem :spree, @spree_gem_options

if @install_default_gateways
gem :spree_gateway, :git => "https://github.com/spree/spree_gateway.git", :branch => "2-1-stable"
gem :spree_gateway, :git => "https://github.com/spree/spree_gateway.git", :branch => "2-3-stable"
end

if @install_default_auth
gem :spree_auth_devise, :git => "https://github.com/spree/spree_auth_devise.git", :branch => "2-1-stable"
gem :spree_auth_devise, :git => "https://github.com/spree/spree_auth_devise.git", :branch => "2-3-stable"
end

run 'bundle install', :capture => true
Expand Down
4 changes: 2 additions & 2 deletions cmd/lib/spree_cmd/templates/extension/Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'

gem 'spree', github: 'spree/spree'
gem 'spree', github: 'spree/spree', branch: '2-3-stable'
# Provides basic authentication functionality for testing parts of your engine
gem 'spree_auth_devise', github: 'spree/spree_auth_devise'
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '2-3-stable'

gemspec
2 changes: 1 addition & 1 deletion core/lib/spree/core/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Spree
def self.version
"2.3.0.beta"
"2.3.0"
end
end
2 changes: 1 addition & 1 deletion lib/sandbox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

cd ./sandbox
echo "gem 'spree', :path => '..'" >> Gemfile
echo "gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => 'master'" >> Gemfile
echo "gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '2-3-stable'" >> Gemfile

bundle install --gemfile Gemfile
bundle exec rails g spree:install --auto-accept --user_class=Spree::User

0 comments on commit bcd6694

Please sign in to comment.