spree-point-of-sale 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ gem 'spree', '> 2.1' #, :git => 'https://github.com/spree/spree.git', :tag => 'v
7
7
  # gem 'spree_html_invoice' , :git => 'git://github.com/dancinglightning/spree-html-invoice.git'
8
8
 
9
9
  # Provides basic authentication functionality for testing parts of your engine
10
- gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '2-2-stable'
10
+ gem 'spree_auth_devise', github: 'radar/spree_auth_devise', branch: '2-2-stable'
11
11
 
12
12
  gemspec
13
13
 
data/README.md CHANGED
@@ -43,7 +43,7 @@ gem "spree-point-of-sale", '1.1.1', require: 'spree_pos'
43
43
 
44
44
  ```ruby
45
45
  #Spree 2.2.x
46
- gem "spree-point-of-sale", '1.2.0', require: 'spree_pos'
46
+ gem "spree-point-of-sale", '1.2.1', require: 'spree_pos'
47
47
  ```
48
48
 
49
49
  If you DONT change the :pos_printing config as described above, you must also add
@@ -1,6 +1,6 @@
1
1
  Spree::Stock::Coordinator.class_eval do
2
2
  #overwrite the spree method to not use stores to build packages
3
- def build_packages(packages)
3
+ def build_packages(packages = Array.new)
4
4
  ::Spree::StockLocation.active.not_store.each do |stock_location|
5
5
  packer = build_packer(stock_location, order)
6
6
  packages += packer.packages
@@ -3,7 +3,7 @@
3
3
  Gem::Specification.new do |s|
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.name = "spree-point-of-sale"
6
- s.version = "1.2.0"
6
+ s.version = "1.2.1"
7
7
 
8
8
  s.author = ["Torsten R, Nishant Tuteja, Manish Kangia"]
9
9
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree-point-of-sale
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- - 0
10
- version: 1.2.0
9
+ - 1
10
+ version: 1.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Torsten R, Nishant Tuteja, Manish Kangia
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2014-03-11 00:00:00 Z
18
+ date: 2014-03-12 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: spree_core