smartkiosk-client 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/models/collection.rb +2 -1
- data/app/models/receipt.rb +0 -2
- data/config/boot.rb +2 -0
- data/lib/liquid/default_filter.rb +7 -0
- data/lib/smartkiosk/client/version.rb +1 -1
- metadata +4 -3
data/app/models/collection.rb
CHANGED
@@ -16,7 +16,8 @@ class Collection < ActiveRecord::Base
|
|
16
16
|
:period_start => I18n.l(period_start),
|
17
17
|
:period_end => I18n.l(created_at),
|
18
18
|
:amount => amount,
|
19
|
-
:banknotes => Hash[banknotes.sort].inject([]){|arr, (nom, cnt)| arr << {'nominal' => nom, 'count' => cnt, 'product' => nom.to_i*cnt.to_i} }
|
19
|
+
:banknotes => Hash[banknotes.sort].inject([]){|arr, (nom, cnt)| arr << {'nominal' => nom, 'count' => cnt, 'product' => nom.to_i*cnt.to_i} },
|
20
|
+
:nominals => banknotes
|
20
21
|
}
|
21
22
|
end
|
22
23
|
|
data/app/models/receipt.rb
CHANGED
data/config/boot.rb
CHANGED
@@ -6,6 +6,7 @@ require 'sprockets'
|
|
6
6
|
require 'sprockets/sass'
|
7
7
|
require 'sprockets/helpers'
|
8
8
|
require 'timezone_local'
|
9
|
+
require 'liquid'
|
9
10
|
|
10
11
|
require 'sinatra/base'
|
11
12
|
require 'sinatra/activerecord'
|
@@ -88,6 +89,7 @@ module Smartkiosk
|
|
88
89
|
def self.load_app!
|
89
90
|
load 'lib/smartkiosk/client/logging'
|
90
91
|
load 'lib/patches/sidekiq'
|
92
|
+
load 'lib/liquid/default_filter'
|
91
93
|
|
92
94
|
require_relative "../app/workers/orders/durable_order_execution"
|
93
95
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smartkiosk-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.14
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -596,6 +596,7 @@ files:
|
|
596
596
|
- db/migrate/20130110025256_create_banners.rb
|
597
597
|
- db/migrate/20130216114539_create_session_records.rb
|
598
598
|
- init.rb
|
599
|
+
- lib/liquid/default_filter.rb
|
599
600
|
- lib/patches/sidekiq.rb
|
600
601
|
- lib/pinger.rb
|
601
602
|
- lib/smartkiosk/client.rb
|
@@ -626,7 +627,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
626
627
|
version: '0'
|
627
628
|
segments:
|
628
629
|
- 0
|
629
|
-
hash:
|
630
|
+
hash: -856372630699196586
|
630
631
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
631
632
|
none: false
|
632
633
|
requirements:
|
@@ -635,7 +636,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
635
636
|
version: '0'
|
636
637
|
segments:
|
637
638
|
- 0
|
638
|
-
hash:
|
639
|
+
hash: -856372630699196586
|
639
640
|
requirements: []
|
640
641
|
rubyforge_project:
|
641
642
|
rubygems_version: 1.8.23
|