Skip to content

Commit

Permalink
Merge pull request #18 from deepakmahakale/jump-3-0-0
Browse files Browse the repository at this point in the history
Jump to version 3.3.0
  • Loading branch information
deepakmahakale authored May 16, 2018
2 parents e48e06a + 5016565 commit 375da06
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: ruby
rvm:
- 2.2.2
- 2.2.7
- 2.3.0
- 2.4.0

before_script:
- cd spec/dummy && bundle exec rake railties:install:migrations
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20160111123141_create_spree_purchase_orders.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class CreateSpreePurchaseOrders < ActiveRecord::Migration
class CreateSpreePurchaseOrders < ActiveRecord::Migration[4.2]
def change
create_table :spree_purchase_orders do |t|
t.string :po_number
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class AddPaymentMethodIdToSpreePurchaseOrders < ActiveRecord::Migration
class AddPaymentMethodIdToSpreePurchaseOrders < ActiveRecord::Migration[4.2]
def change
add_column :spree_purchase_orders, :payment_method_id, :integer
add_index :spree_purchase_orders, :payment_method_id
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class AddUserIdToSpreePurchaseOrders < ActiveRecord::Migration
class AddUserIdToSpreePurchaseOrders < ActiveRecord::Migration[4.2]
def change
add_column :spree_purchase_orders, :user_id, :integer
add_index :spree_purchase_orders, :user_id
Expand Down
2 changes: 1 addition & 1 deletion lib/spree_purchase_order/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SpreePurchaseOrder
VERSION = '3.2.0'
VERSION = '3.3.0'
end
2 changes: 0 additions & 2 deletions spec/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ class Application < Rails::Application
Rails.configuration.cache_classes ? require(c) : load(c)
end
end

config.active_record.raise_in_transactional_callbacks = true
end
end

4 changes: 2 additions & 2 deletions spree_purchase_order.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.version = SpreePurchaseOrder::VERSION
s.summary = 'Adds Purchase Order as a Payment Method to Spree Commerce'
s.description = s.summary
s.required_ruby_version = '>= 2.2.2'
s.required_ruby_version = '>= 2.2.7'

s.author = 'Deepak Mahakale'
s.email = '[email protected]'
Expand All @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.require_path = 'lib'
s.requirements << 'none'

s.add_dependency 'spree_core', '~> 3.2.0'
s.add_dependency 'spree_core', '~> 3.3.0'

s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rspec-rails'
Expand Down

0 comments on commit 375da06

Please sign in to comment.