stockor 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.rubocop.yml +15 -0
- data/Gemfile +3 -1
- data/Gemfile.lock +97 -193
- data/client/skr/Extension.coffee +8 -4
- data/client/skr/api.js +21 -0
- data/client/skr/api.scss +148 -0
- data/client/skr/api/Components/AddressForm.cjsx +47 -0
- data/client/skr/api/Components/Base.coffee +7 -0
- data/client/skr/api/Components/SaleHistory.cjsx +32 -0
- data/client/skr/api/Components/SingleItemCart.cjsx +30 -0
- data/client/skr/api/Models/Base.coffee +10 -0
- data/client/skr/api/Models/Cart.coffee +40 -0
- data/client/skr/api/Models/Sale.coffee +43 -0
- data/client/skr/api/Models/SalesHistory.coffee +17 -0
- data/client/skr/api/Models/Sku.coffee +16 -0
- data/client/skr/api/SingleItemCheckout.cjsx +99 -0
- data/client/skr/api/namespace.js +6 -0
- data/client/skr/api/onReady.coffee +23 -0
- data/client/skr/components/CreditCardForm.cjsx +35 -0
- data/client/skr/components/CustomerFinder.cjsx +0 -3
- data/client/skr/components/InvoiceFinder.cjsx +1 -0
- data/client/skr/components/LatexSnippets.cjsx +65 -0
- data/client/skr/components/LocationChooser.cjsx +5 -1
- data/client/skr/components/PrintButton.cjsx +33 -0
- data/client/skr/components/PrintFormChooser.cjsx +10 -10
- data/client/skr/components/SalesOrderFinder.cjsx +2 -1
- data/client/skr/components/SystemSettings.cjsx +69 -9
- data/client/skr/components/address/index.js +1 -0
- data/client/skr/models/Address.coffee +3 -0
- data/client/skr/models/CreditCard.coffee +49 -0
- data/client/skr/models/CreditCardGateway.coffee +27 -0
- data/client/skr/models/Invoice.coffee +13 -5
- data/client/skr/models/Location.coffee +6 -4
- data/client/skr/models/Payment.coffee +33 -13
- data/client/skr/models/SalesOrder.coffee +7 -3
- data/client/skr/models/SequentialId.coffee +17 -0
- data/client/skr/models/Sku.coffee +1 -1
- data/client/skr/models/TimeEntry.coffee +3 -4
- data/client/skr/models/mixins/PrintSupport.coffee +4 -1
- data/client/skr/models/mixins/SkuLine.coffee +1 -1
- data/client/skr/screens/customer-maint/CustomerMaint.cjsx +1 -2
- data/client/skr/screens/customer-projects/CustomerProjects.cjsx +7 -3
- data/client/skr/screens/customer-projects/index.scss +1 -0
- data/client/skr/screens/fresh-books-import/ApiInfo.cjsx +1 -1
- data/client/skr/screens/gl-accounts/GlAccounts.cjsx +1 -1
- data/client/skr/screens/gl-transactions/GlTransactions.cjsx +1 -1
- data/client/skr/screens/invoice/Invoice.cjsx +9 -17
- data/client/skr/screens/invoice/Payment.cjsx +94 -13
- data/client/skr/screens/invoice/index.scss +32 -0
- data/client/skr/screens/locations/Locations.cjsx +3 -2
- data/client/skr/screens/payment-category/PaymentCategory.cjsx +1 -1
- data/client/skr/screens/payments/Payments.cjsx +5 -4
- data/client/skr/screens/sale-report/SaleReport.cjsx +73 -0
- data/client/skr/screens/sale-report/index.js +5 -0
- data/client/skr/screens/sale-report/index.scss +9 -0
- data/client/skr/screens/sales-order/SalesOrder.cjsx +4 -4
- data/client/skr/screens/sku-maint/SkuMaint.cjsx +5 -0
- data/client/skr/screens/sku-maint/SkuUomList.cjsx +45 -56
- data/client/skr/screens/sku-maint/index.scss +33 -13
- data/client/skr/screens/time-invoicing/TimeInvoicing.cjsx +2 -2
- data/client/skr/screens/time-tracking/EditEntry.cjsx +2 -4
- data/client/skr/screens/time-tracking/TimeTracking.cjsx +1 -1
- data/client/skr/screens/vendor-maint/VendorMaint.cjsx +1 -1
- data/client/skr/vendor/index.js +2438 -0
- data/config/lanes.rb +10 -3
- data/config/routes.rb +9 -7
- data/config/screens.rb +39 -13
- data/db/migrate/20160517032350_create_remove_location_logos.rb +11 -0
- data/db/migrate/20160531014306_create_public_skus.rb +7 -0
- data/db/migrate/20160604195848_create_null_addresses.rb +9 -0
- data/db/migrate/20160605024432_create_sku_associations_views.rb +48 -0
- data/db/migrate/20160608023553_create_invoice_payments.rb +9 -0
- data/db/migrate/20160620010455_add_payments_to_inv_details.rb +54 -0
- data/db/schema.sql +206 -38
- data/db/seed.rb +6 -0
- data/lib/skr.rb +1 -1
- data/lib/skr/access_roles.rb +6 -1
- data/lib/skr/concerns/has_gl_transaction.rb +8 -0
- data/lib/skr/concerns/inv_extensions.rb +11 -0
- data/lib/skr/concerns/is_order_like.rb +3 -3
- data/lib/skr/concerns/visible_id_identifier.rb +3 -8
- data/lib/skr/configuration.rb +2 -0
- data/lib/skr/extension.rb +6 -0
- data/lib/skr/handlers/credit_card_gateway.rb +31 -0
- data/lib/skr/handlers/invoice_from_time_entries.rb +12 -26
- data/lib/skr/handlers/sales.rb +44 -0
- data/lib/skr/handlers/sequential_ids.rb +46 -0
- data/lib/skr/handlers/skus.rb +36 -0
- data/lib/skr/jobs/fresh_books/import.rb +3 -1
- data/lib/skr/merchant_gateway.rb +37 -0
- data/lib/skr/models/address.rb +7 -5
- data/lib/skr/models/bank_account.rb +12 -0
- data/lib/skr/models/business_entity.rb +1 -1
- data/lib/skr/models/gl_transaction.rb +3 -0
- data/lib/skr/models/inv_line.rb +7 -2
- data/lib/skr/models/inventory_adjustment.rb +0 -5
- data/lib/skr/models/invoice.rb +25 -36
- data/lib/skr/models/location.rb +1 -1
- data/lib/skr/models/payment.rb +56 -10
- data/lib/skr/models/po_receipt.rb +0 -8
- data/lib/skr/models/sales_order.rb +7 -2
- data/lib/skr/models/sequential_id.rb +6 -1
- data/lib/skr/models/sku.rb +3 -0
- data/lib/skr/print.rb +1 -0
- data/lib/skr/print/context.rb +19 -0
- data/lib/skr/print/form.rb +7 -1
- data/lib/skr/version.rb +1 -1
- data/npm-build/package.json +26 -0
- data/npm-build/vendor.js +10 -0
- data/npm-build/webpack.config.js +25 -0
- data/spec/fixtures/skr/bank_account.yml +9 -0
- data/spec/fixtures/skr/customer.yml +10 -0
- data/spec/fixtures/skr/inv_line.yml +12 -0
- data/spec/fixtures/skr/invoice.yml +17 -0
- data/spec/fixtures/skr/payment_category.yml +6 -0
- data/spec/fixtures/skr/sales_order.yml +1 -1
- data/spec/fixtures/skr/sku.yml +10 -0
- data/spec/fixtures/skr/sku_loc.yml +4 -0
- data/spec/fixtures/skr/uom.yml +6 -0
- data/spec/server/handlers/invoice_from_time_entries_spec.rb +13 -6
- data/spec/server/handlers/sequential_ids_spec.rb +22 -0
- data/spec/server/models/invoice_spec.rb +36 -0
- data/spec/server/models/payment_spec.rb +50 -22
- data/spec/server/models/sales_order_spec.rb +12 -0
- data/spec/server/print/form_spec.rb +20 -4
- data/spec/skr/api/SingleItemCheckoutSpec.cjsx +10 -0
- data/spec/skr/screens/sale-report/SaleReportSpec.coffee +5 -0
- data/stockor.gemspec +5 -4
- data/templates/print/layout.tex.erb +1 -1
- data/templates/print/packages/INSTALL +7 -0
- data/templates/print/packages/qrcode.sty +3051 -0
- data/templates/print/packages/svgnam.def +186 -0
- data/templates/print/packages/x11nam.def +352 -0
- data/templates/print/packages/xcolor.pro +58 -0
- data/templates/print/packages/xcolor.sty +1460 -0
- data/templates/print/types/invoice/default.tex.erb +2 -0
- data/templates/print/types/invoice/labor.tex.erb +2 -1
- data/templates/print/types/invoice/ticket.tex.erb +41 -0
- data/templates/print/types/payment/default.tex.erb +13 -12
- metadata +78 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d034328c7abb1e4a300d554047fe8e92c191e851
|
4
|
+
data.tar.gz: adcf2f8ad7574c66c8fccee8a03522890f47c3ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aaa28a0a53f29918c866658334015ce574cd45f6ac1d96992c85a36b59f476f7afc5c76ffe20399d457306e7fbd6ebacbd8a8fedced54ee61a4d418518606af7
|
7
|
+
data.tar.gz: e421d735d1959c7824f6bc814da29dc89aa5b5d9ec77ee62218f925135c2678333c78d6894d1d0dc943de1b16c68478a3b6d1f279aaf1a320210b792f8a23707
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
StringLiterals:
|
2
|
+
Enabled: false
|
3
|
+
|
4
|
+
Style/IndentationWidth:
|
5
|
+
# Number of spaces for each indentation level.
|
6
|
+
Width: 4
|
7
|
+
|
8
|
+
Style/EmptyLinesAroundClassBody:
|
9
|
+
Enabled: false
|
10
|
+
|
11
|
+
Style/EmptyLinesAroundModuleBody:
|
12
|
+
Enabled: false
|
13
|
+
|
14
|
+
Style/ClassAndModuleChildren:
|
15
|
+
Enabled: false
|
data/Gemfile
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
|
3
|
+
gem "lanes", github: "argosity/lanes", branch: 'master'
|
4
4
|
|
5
5
|
gem "faker"
|
6
6
|
gem 'puma'
|
7
7
|
gemspec
|
8
|
+
|
9
|
+
gem 'rack-protection', github: 'nathanstitt/rack-protection', branch: 'allow-if'
|
data/Gemfile.lock
CHANGED
@@ -1,21 +1,75 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git://github.com/argosity/lanes.git
|
3
|
+
revision: c328b798109f5db9cd507992303eff4e1a259bc6
|
4
|
+
branch: master
|
5
|
+
specs:
|
6
|
+
lanes (0.5.5)
|
7
|
+
activejob (~> 4.2)
|
8
|
+
activerecord (~> 4.2)
|
9
|
+
bcrypt (~> 3.1)
|
10
|
+
carrierwave (~> 0.10.0)
|
11
|
+
coffee-react (~> 4.0)
|
12
|
+
coffee-script (~> 2.4)
|
13
|
+
compass-import-once (~> 1.0)
|
14
|
+
execjs (~> 2.6)
|
15
|
+
fastimage (~> 1.8.1)
|
16
|
+
guard (~> 2.13)
|
17
|
+
guard-jasmine (~> 2.0)
|
18
|
+
guard-minitest (~> 2.3)
|
19
|
+
hashie (~> 3.3)
|
20
|
+
jasmine-core (~> 2.0)
|
21
|
+
jobba (~> 1.4)
|
22
|
+
message_bus (= 2.0.0.beta.6)
|
23
|
+
mini_magick (~> 4.3.6)
|
24
|
+
minitest-around (~> 0.2)
|
25
|
+
mocha (~> 1.1)
|
26
|
+
oj (~> 2.1)
|
27
|
+
pg (~> 0.8)
|
28
|
+
rack-cors (~> 0.4)
|
29
|
+
rack-protection (~> 1.5)
|
30
|
+
rack-test (~> 0.6)
|
31
|
+
rake (~> 10.0)
|
32
|
+
require_all (~> 1.3)
|
33
|
+
resque (~> 1.25)
|
34
|
+
sanitize (~> 3.0)
|
35
|
+
sass (~> 3.4)
|
36
|
+
sinatra (~> 1.4)
|
37
|
+
sprockets (~> 3.6)
|
38
|
+
sprockets-helpers (~> 1.2)
|
39
|
+
thor (~> 0.19)
|
40
|
+
uglifier (~> 2.7)
|
41
|
+
|
42
|
+
GIT
|
43
|
+
remote: git://github.com/nathanstitt/rack-protection.git
|
44
|
+
revision: ae5b2cd7f9e0c301b1ff4340d74628592de8fdca
|
45
|
+
branch: allow-if
|
46
|
+
specs:
|
47
|
+
rack-protection (1.5.3)
|
48
|
+
rack
|
49
|
+
|
1
50
|
PATH
|
2
51
|
remote: .
|
3
52
|
specs:
|
4
|
-
stockor (0.
|
5
|
-
aasm (~> 4.1)
|
6
|
-
|
7
|
-
|
53
|
+
stockor (0.4.0)
|
54
|
+
aasm (~> 4.10.1)
|
55
|
+
activemerchant (~> 1.59)
|
56
|
+
erb_latex (= 1.0)
|
57
|
+
lanes (~> 0.5.5)
|
8
58
|
numbers_in_words (~> 0.4.0)
|
9
|
-
ruby-freshbooks
|
59
|
+
ruby-freshbooks (~> 0.4)
|
10
60
|
|
11
61
|
GEM
|
12
62
|
remote: https://rubygems.org/
|
13
63
|
specs:
|
14
|
-
|
15
|
-
aasm (4.10.0)
|
64
|
+
aasm (4.10.1)
|
16
65
|
activejob (4.2.6)
|
17
66
|
activesupport (= 4.2.6)
|
18
67
|
globalid (>= 0.3.0)
|
68
|
+
activemerchant (1.59.0)
|
69
|
+
activesupport (>= 3.2.14, < 5.1)
|
70
|
+
builder (>= 2.1.2, < 4.0.0)
|
71
|
+
i18n (>= 0.6.9)
|
72
|
+
nokogiri (~> 1.4)
|
19
73
|
activemodel (4.2.6)
|
20
74
|
activesupport (= 4.2.6)
|
21
75
|
builder (~> 3.1)
|
@@ -33,7 +87,7 @@ GEM
|
|
33
87
|
arel (6.0.3)
|
34
88
|
bcrypt (3.1.11)
|
35
89
|
builder (3.2.2)
|
36
|
-
byebug (
|
90
|
+
byebug (9.0.5)
|
37
91
|
carrierwave (0.10.0)
|
38
92
|
activemodel (>= 3.2.0)
|
39
93
|
activesupport (>= 3.2.0)
|
@@ -42,7 +96,7 @@ GEM
|
|
42
96
|
childprocess (0.5.9)
|
43
97
|
ffi (~> 1.0, >= 1.0.11)
|
44
98
|
coderay (1.1.1)
|
45
|
-
coffee-react (
|
99
|
+
coffee-react (4.0.0)
|
46
100
|
execjs
|
47
101
|
coffee-script (2.4.1)
|
48
102
|
coffee-script-source
|
@@ -50,136 +104,24 @@ GEM
|
|
50
104
|
coffee-script-source (1.10.0)
|
51
105
|
compass-import-once (1.0.5)
|
52
106
|
sass (>= 3.2, < 3.5)
|
53
|
-
concurrent-ruby (1.0.
|
107
|
+
concurrent-ruby (1.0.2)
|
54
108
|
crack (0.4.3)
|
55
109
|
safe_yaml (~> 1.0.0)
|
56
110
|
crass (1.0.2)
|
57
|
-
erb_latex (0.
|
58
|
-
|
59
|
-
execjs (2.6.0)
|
111
|
+
erb_latex (1.0.0)
|
112
|
+
execjs (2.7.0)
|
60
113
|
faker (1.6.3)
|
61
114
|
i18n (~> 0.5)
|
62
115
|
fastimage (1.8.1)
|
63
116
|
addressable (~> 2.3, >= 2.3.5)
|
64
117
|
ffi (1.9.10)
|
65
|
-
fission (0.5.0)
|
66
|
-
CFPropertyList (~> 2.2)
|
67
|
-
fog (1.37.0)
|
68
|
-
fog-aliyun (>= 0.1.0)
|
69
|
-
fog-atmos
|
70
|
-
fog-aws (>= 0.6.0)
|
71
|
-
fog-brightbox (~> 0.4)
|
72
|
-
fog-core (~> 1.32)
|
73
|
-
fog-dynect (~> 0.0.2)
|
74
|
-
fog-ecloud (~> 0.1)
|
75
|
-
fog-google (<= 0.1.0)
|
76
|
-
fog-json
|
77
|
-
fog-local
|
78
|
-
fog-powerdns (>= 0.1.1)
|
79
|
-
fog-profitbricks
|
80
|
-
fog-radosgw (>= 0.0.2)
|
81
|
-
fog-riakcs
|
82
|
-
fog-sakuracloud (>= 0.0.4)
|
83
|
-
fog-serverlove
|
84
|
-
fog-softlayer
|
85
|
-
fog-storm_on_demand
|
86
|
-
fog-terremark
|
87
|
-
fog-vmfusion
|
88
|
-
fog-voxel
|
89
|
-
fog-vsphere (>= 0.4.0)
|
90
|
-
fog-xenserver
|
91
|
-
fog-xml (~> 0.1.1)
|
92
|
-
ipaddress (~> 0.5)
|
93
|
-
fog-aliyun (0.1.0)
|
94
|
-
fog-core (~> 1.27)
|
95
|
-
fog-json (~> 1.0)
|
96
|
-
ipaddress (~> 0.8)
|
97
|
-
xml-simple (~> 1.1)
|
98
|
-
fog-atmos (0.1.0)
|
99
|
-
fog-core
|
100
|
-
fog-xml
|
101
|
-
fog-aws (0.9.2)
|
102
|
-
fog-core (~> 1.27)
|
103
|
-
fog-json (~> 1.0)
|
104
|
-
fog-xml (~> 0.1)
|
105
|
-
ipaddress (~> 0.8)
|
106
|
-
fog-brightbox (0.10.1)
|
107
|
-
fog-core (~> 1.22)
|
108
|
-
fog-json
|
109
|
-
inflecto (~> 0.0.2)
|
110
|
-
fog-core (1.37.0)
|
111
|
-
builder
|
112
|
-
excon (~> 0.45)
|
113
|
-
formatador (~> 0.2)
|
114
|
-
fog-dynect (0.0.3)
|
115
|
-
fog-core
|
116
|
-
fog-json
|
117
|
-
fog-xml
|
118
|
-
fog-ecloud (0.3.0)
|
119
|
-
fog-core
|
120
|
-
fog-xml
|
121
|
-
fog-google (0.1.0)
|
122
|
-
fog-core
|
123
|
-
fog-json
|
124
|
-
fog-xml
|
125
|
-
fog-json (1.0.2)
|
126
|
-
fog-core (~> 1.0)
|
127
|
-
multi_json (~> 1.10)
|
128
|
-
fog-local (0.3.0)
|
129
|
-
fog-core (~> 1.27)
|
130
|
-
fog-powerdns (0.1.1)
|
131
|
-
fog-core (~> 1.27)
|
132
|
-
fog-json (~> 1.0)
|
133
|
-
fog-xml (~> 0.1)
|
134
|
-
fog-profitbricks (0.0.5)
|
135
|
-
fog-core
|
136
|
-
fog-xml
|
137
|
-
nokogiri
|
138
|
-
fog-radosgw (0.0.5)
|
139
|
-
fog-core (>= 1.21.0)
|
140
|
-
fog-json
|
141
|
-
fog-xml (>= 0.0.1)
|
142
|
-
fog-riakcs (0.1.0)
|
143
|
-
fog-core
|
144
|
-
fog-json
|
145
|
-
fog-xml
|
146
|
-
fog-sakuracloud (1.7.5)
|
147
|
-
fog-core
|
148
|
-
fog-json
|
149
|
-
fog-serverlove (0.1.2)
|
150
|
-
fog-core
|
151
|
-
fog-json
|
152
|
-
fog-softlayer (1.1.0)
|
153
|
-
fog-core
|
154
|
-
fog-json
|
155
|
-
fog-storm_on_demand (0.1.1)
|
156
|
-
fog-core
|
157
|
-
fog-json
|
158
|
-
fog-terremark (0.1.0)
|
159
|
-
fog-core
|
160
|
-
fog-xml
|
161
|
-
fog-vmfusion (0.1.0)
|
162
|
-
fission
|
163
|
-
fog-core
|
164
|
-
fog-voxel (0.1.0)
|
165
|
-
fog-core
|
166
|
-
fog-xml
|
167
|
-
fog-vsphere (0.6.3)
|
168
|
-
fog-core
|
169
|
-
rbvmomi (~> 1.8)
|
170
|
-
fog-xenserver (0.2.3)
|
171
|
-
fog-core
|
172
|
-
fog-xml
|
173
|
-
fog-xml (0.1.2)
|
174
|
-
fog-core
|
175
|
-
nokogiri (~> 1.5, >= 1.5.11)
|
176
118
|
formatador (0.2.5)
|
177
119
|
globalid (0.3.6)
|
178
120
|
activesupport (>= 4.1.0)
|
179
121
|
growl (1.0.3)
|
180
|
-
guard (2.
|
122
|
+
guard (2.14.0)
|
181
123
|
formatador (>= 0.2.4)
|
182
|
-
listen (>= 2.7,
|
124
|
+
listen (>= 2.7, < 4.0)
|
183
125
|
lumberjack (~> 1.0)
|
184
126
|
nenv (~> 0.1)
|
185
127
|
notiffany (~> 0.0)
|
@@ -195,17 +137,15 @@ GEM
|
|
195
137
|
multi_json (~> 1.1)
|
196
138
|
thor (~> 0.19)
|
197
139
|
tilt
|
198
|
-
guard-minitest (2.4.
|
140
|
+
guard-minitest (2.4.5)
|
199
141
|
guard-compat (~> 1.2)
|
200
142
|
minitest (>= 3.0)
|
201
143
|
hashdiff (0.3.0)
|
202
|
-
hashie (3.4.
|
144
|
+
hashie (3.4.4)
|
203
145
|
httparty (0.13.7)
|
204
146
|
json (~> 1.8)
|
205
147
|
multi_xml (>= 0.5.2)
|
206
148
|
i18n (0.7.0)
|
207
|
-
inflecto (0.0.2)
|
208
|
-
ipaddress (0.8.3)
|
209
149
|
jasmine (2.4.0)
|
210
150
|
jasmine-core (~> 2.4)
|
211
151
|
phantomjs
|
@@ -216,96 +156,59 @@ GEM
|
|
216
156
|
redis (~> 3.2)
|
217
157
|
redis-namespace
|
218
158
|
json (1.8.3)
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
carrierwave (~> 0.10.0)
|
224
|
-
coffee-react (~> 3.0)
|
225
|
-
coffee-script (~> 2.3)
|
226
|
-
compass-import-once (~> 1.0)
|
227
|
-
execjs (~> 2.2)
|
228
|
-
fastimage (~> 1.8.1)
|
229
|
-
fog (~> 1.37.0)
|
230
|
-
guard (~> 2.0)
|
231
|
-
guard-jasmine (~> 2.0)
|
232
|
-
guard-minitest (~> 2.3)
|
233
|
-
hashie (~> 3.3)
|
234
|
-
jasmine-core (~> 2.0)
|
235
|
-
jobba (~> 1.4)
|
236
|
-
message_bus (= 2.0.0.beta.6)
|
237
|
-
mini_magick (~> 4.3.6)
|
238
|
-
minitest-around (~> 0.2)
|
239
|
-
mocha (~> 1.1)
|
240
|
-
oj (~> 2.1)
|
241
|
-
pg (~> 0.17)
|
242
|
-
rack-protection (~> 1.5)
|
243
|
-
rack-test (~> 0.6)
|
244
|
-
rake (~> 10.0)
|
245
|
-
require_all (~> 1.3)
|
246
|
-
resque (~> 1.25)
|
247
|
-
sanitize (~> 3.0)
|
248
|
-
sass (~> 3.4)
|
249
|
-
sinatra (~> 1.4)
|
250
|
-
sprockets (~> 3.0)
|
251
|
-
sprockets-helpers (~> 1.2)
|
252
|
-
thor (~> 0.19)
|
253
|
-
uglifier (~> 2.7)
|
254
|
-
listen (3.0.6)
|
255
|
-
rb-fsevent (>= 0.9.3)
|
256
|
-
rb-inotify (>= 0.9.7)
|
159
|
+
listen (3.1.5)
|
160
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
161
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
162
|
+
ruby_dep (~> 1.2)
|
257
163
|
lumberjack (1.0.10)
|
258
164
|
message_bus (2.0.0.beta.6)
|
259
165
|
rack (>= 1.1.3)
|
260
166
|
metaclass (0.0.4)
|
261
167
|
method_source (0.8.2)
|
262
|
-
mime-types (3.
|
168
|
+
mime-types (3.1)
|
263
169
|
mime-types-data (~> 3.2015)
|
264
|
-
mime-types-data (3.2016.
|
170
|
+
mime-types-data (3.2016.0521)
|
265
171
|
mini_magick (4.3.6)
|
266
|
-
mini_portile2 (2.
|
267
|
-
minitest (5.
|
172
|
+
mini_portile2 (2.1.0)
|
173
|
+
minitest (5.9.0)
|
268
174
|
minitest-around (0.3.2)
|
269
175
|
minitest (~> 5.0)
|
270
176
|
mocha (1.1.0)
|
271
177
|
metaclass (~> 0.0.1)
|
272
178
|
mono_logger (1.1.0)
|
273
|
-
multi_json (1.
|
179
|
+
multi_json (1.12.1)
|
274
180
|
multi_xml (0.5.5)
|
275
181
|
nenv (0.3.0)
|
276
|
-
nokogiri (1.6.
|
277
|
-
mini_portile2 (~> 2.
|
182
|
+
nokogiri (1.6.8)
|
183
|
+
mini_portile2 (~> 2.1.0)
|
184
|
+
pkg-config (~> 1.1.7)
|
278
185
|
nokogumbo (1.2.0)
|
279
186
|
nokogiri
|
280
|
-
notiffany (0.0
|
187
|
+
notiffany (0.1.0)
|
281
188
|
nenv (~> 0.1)
|
282
189
|
shellany (~> 0.0)
|
283
190
|
numbers_in_words (0.4.0)
|
284
191
|
activesupport
|
285
|
-
oj (2.
|
192
|
+
oj (2.16.1)
|
286
193
|
pg (0.18.4)
|
287
194
|
phantomjs (2.1.1.0)
|
195
|
+
pkg-config (1.1.7)
|
288
196
|
pry (0.10.3)
|
289
197
|
coderay (~> 1.1.0)
|
290
198
|
method_source (~> 0.8.1)
|
291
199
|
slop (~> 3.4)
|
292
|
-
pry-byebug (3.
|
293
|
-
byebug (~>
|
200
|
+
pry-byebug (3.4.0)
|
201
|
+
byebug (~> 9.0)
|
294
202
|
pry (~> 0.10)
|
295
|
-
puma (3.
|
203
|
+
puma (3.4.0)
|
296
204
|
rack (1.6.4)
|
297
|
-
rack-
|
298
|
-
rack
|
205
|
+
rack-cors (0.4.0)
|
299
206
|
rack-test (0.6.3)
|
300
207
|
rack (>= 1.0)
|
301
208
|
rake (10.5.0)
|
302
209
|
rb-fsevent (0.9.7)
|
303
210
|
rb-inotify (0.9.7)
|
304
211
|
ffi (>= 0.5.0)
|
305
|
-
rbvmomi (1.8.2)
|
306
|
-
builder
|
307
|
-
nokogiri (>= 1.4.1)
|
308
|
-
trollop
|
309
212
|
redis (3.3.0)
|
310
213
|
redis-namespace (1.5.2)
|
311
214
|
redis (~> 3.0, >= 3.0.4)
|
@@ -319,6 +222,7 @@ GEM
|
|
319
222
|
ruby-freshbooks (0.4.1)
|
320
223
|
builder (>= 2.1.2)
|
321
224
|
httparty (>= 0.5.0)
|
225
|
+
ruby_dep (1.3.1)
|
322
226
|
safe_yaml (1.0.4)
|
323
227
|
sanitize (3.1.2)
|
324
228
|
crass (~> 1.0.1)
|
@@ -331,28 +235,26 @@ GEM
|
|
331
235
|
rack-protection (~> 1.4)
|
332
236
|
tilt (>= 1.3, < 3)
|
333
237
|
slop (3.6.0)
|
334
|
-
sprockets (3.6.
|
238
|
+
sprockets (3.6.2)
|
335
239
|
concurrent-ruby (~> 1.0)
|
336
240
|
rack (> 1, < 3)
|
337
241
|
sprockets-helpers (1.2.1)
|
338
242
|
sprockets (>= 2.2)
|
339
243
|
thor (0.19.1)
|
340
244
|
thread_safe (0.3.5)
|
341
|
-
tilt (2.0.
|
342
|
-
trollop (2.1.2)
|
245
|
+
tilt (2.0.5)
|
343
246
|
tzinfo (1.2.2)
|
344
247
|
thread_safe (~> 0.1)
|
345
248
|
uglifier (2.7.2)
|
346
249
|
execjs (>= 0.3.0)
|
347
250
|
json (>= 1.8.0)
|
348
|
-
vcr (3.0.
|
251
|
+
vcr (3.0.3)
|
349
252
|
vegas (0.1.11)
|
350
253
|
rack (>= 1.0.0)
|
351
|
-
webmock (1.24.
|
254
|
+
webmock (1.24.6)
|
352
255
|
addressable (>= 2.3.6)
|
353
256
|
crack (>= 0.3.2)
|
354
257
|
hashdiff
|
355
|
-
xml-simple (1.1.5)
|
356
258
|
|
357
259
|
PLATFORMS
|
358
260
|
ruby
|
@@ -363,12 +265,14 @@ DEPENDENCIES
|
|
363
265
|
growl
|
364
266
|
guard
|
365
267
|
guard-minitest
|
268
|
+
lanes!
|
366
269
|
pry-byebug
|
367
270
|
puma
|
271
|
+
rack-protection!
|
368
272
|
rake
|
369
273
|
stockor!
|
370
274
|
vcr (~> 3.0)
|
371
275
|
webmock (~> 1.22)
|
372
276
|
|
373
277
|
BUNDLED WITH
|
374
|
-
1.
|
278
|
+
1.12.5
|