office_clerk 0.8 → 0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +6 -2
- data/Gemfile.lock +159 -100
- data/Guardfile +3 -0
- data/README.md +7 -2
- data/Rakefile +9 -0
- data/app/assets/images/missing_list.png +0 -0
- data/app/assets/images/missing_product.png +0 -0
- data/app/assets/images/missing_thumb.png +0 -0
- data/app/assets/javascripts/office_clerk.js +7 -5
- data/app/assets/stylesheets/office_clerk.css.scss +89 -14
- data/app/controllers/baskets_controller.rb +37 -26
- data/app/controllers/orders_controller.rb +44 -29
- data/app/controllers/products_controller.rb +6 -6
- data/app/controllers/purchases_controller.rb +18 -8
- data/app/helpers/admin_helper.rb +16 -21
- data/app/helpers/baskets_helper.rb +31 -0
- data/app/helpers/categories_helper.rb +3 -0
- data/app/helpers/office_helper.rb +34 -7
- data/app/helpers/orders_helper.rb +2 -3
- data/app/models/basket.rb +46 -20
- data/app/models/clerk.rb +6 -1
- data/app/models/item.rb +7 -0
- data/app/models/order.rb +18 -6
- data/app/models/product.rb +23 -8
- data/app/views/addresses/show.html.haml +2 -2
- data/app/views/baskets/_small.html.haml +2 -2
- data/app/views/baskets/edit.html.haml +19 -16
- data/app/views/baskets/index.html.haml +13 -5
- data/app/views/baskets/show.html.haml +3 -3
- data/app/views/categories/_treeview.html.haml +1 -2
- data/app/views/categories/edit.html.haml +4 -5
- data/app/views/categories/index.html.haml +7 -7
- data/app/views/categories/show.html.haml +3 -4
- data/app/views/clerks/edit.html.haml +4 -3
- data/app/views/clerks/index.html.haml +6 -6
- data/app/views/clerks/show.html.haml +3 -3
- data/app/views/layouts/_admin_menu.html.haml +8 -8
- data/app/views/layouts/_messages.html.haml +2 -2
- data/app/views/layouts/office_clerk.haml +10 -27
- data/app/views/order_mailer/confirm.text.erb +1 -2
- data/app/views/order_mailer/shipped.text.erb +2 -1
- data/app/views/orders/index.csv.erb +6 -6
- data/app/views/orders/index.html.haml +25 -20
- data/app/views/orders/shipment.haml +57 -0
- data/app/views/orders/show.html.haml +106 -39
- data/app/views/products/_head.haml +1 -2
- data/app/views/products/_line.html.haml +1 -1
- data/app/views/products/_preview_box.haml +14 -10
- data/app/views/products/_triple.html.haml +1 -1
- data/app/views/products/edit.html.haml +4 -4
- data/app/views/products/index.html.haml +24 -13
- data/app/views/products/show.html.haml +15 -12
- data/app/views/purchases/index.html.haml +11 -7
- data/app/views/purchases/show.html.haml +42 -25
- data/app/views/sessions/sign_up.haml +10 -10
- data/app/views/suppliers/edit.html.haml +2 -2
- data/app/views/suppliers/index.html.haml +6 -7
- data/app/views/suppliers/show.html.haml +2 -3
- data/config/i18n-tasks.yml +97 -0
- data/config/initializers/migrate.rb +11 -1
- data/config/initializers/paperclip.rb +17 -0
- data/config/locales/config.yml +0 -1
- data/config/locales/en.yml +99 -116
- data/config/locales/fi.yml +101 -117
- data/config/routes.rb +18 -15
- data/db/migrate/20131226143612_categories.rb +2 -2
- data/db/migrate/20131226151332_products.rb +3 -3
- data/lib/office_clerk/engine.rb +5 -8
- data/lib/office_clerk/shipping_method.rb +12 -1
- data/lib/office_clerk/version.rb +1 -1
- data/office_clerk.gemspec +5 -5
- data/spec/controllers/baskets_controller_spec.rb +2 -2
- data/spec/controllers/orders_controller_spec.rb +0 -29
- data/spec/controllers/products_controller_spec.rb +4 -3
- data/spec/controllers/purchases_controller_spec.rb +3 -4
- data/spec/factories/orders.rb +6 -1
- data/spec/factories/products.rb +3 -0
- data/spec/features/baskets/edit_spec.rb +6 -1
- data/spec/features/baskets/index_spec.rb +1 -0
- data/spec/features/baskets/search_spec.rb +1 -1
- data/spec/features/orders/filter_spec.rb +19 -0
- data/spec/features/orders/inventory_spec.rb +19 -0
- data/spec/features/orders/ordering_spec.rb +84 -0
- data/spec/features/paginate_spec.rb +11 -0
- data/spec/features/sessions_spec.rb +2 -1
- data/spec/{models/locale_spec.rb → i18n_spec.rb} +19 -1
- data/spec/mailers/order_mailer_spec.rb +2 -1
- data/spec/models/baskets/inventory_spec.rb +9 -2
- data/spec/models/baskets/items_spec.rb +6 -1
- data/spec/models/order_spec.rb +20 -1
- data/spec/routing/baskets_routing_spec.rb +5 -1
- data/spec/routing/orders_routing_spec.rb +0 -12
- data/spec/spec_helper.rb +16 -3
- data/test_app/bin/setup +29 -0
- data/test_app/config/application.rb +3 -0
- data/test_app/config/boot.rb +1 -2
- data/test_app/config/environment.rb +1 -1
- data/test_app/config/environments/development.rb +1 -1
- data/test_app/config/environments/production.rb +20 -21
- data/test_app/config/environments/test.rb +7 -4
- data/test_app/config/initializers/assets.rb +11 -0
- data/test_app/config/initializers/cookies_serializer.rb +3 -0
- data/test_app/config/initializers/mime_types.rb +0 -1
- data/test_app/config/initializers/session_store.rb +1 -1
- data/test_app/config/routes.rb +1 -2
- data/test_app/config/secrets.yml +22 -0
- data/test_app/db/migrate/20141114205526_suppliers.office.rb +1 -1
- data/test_app/db/migrate/20141114205527_categories.office.rb +3 -3
- data/test_app/db/migrate/20141114205528_items.office.rb +1 -1
- data/test_app/db/migrate/20141114205529_orders.office.rb +1 -1
- data/test_app/db/migrate/20141114205530_baskets.office.rb +1 -1
- data/test_app/db/migrate/20141114205531_purchases.office.rb +1 -1
- data/test_app/db/migrate/20141114205532_products.office.rb +4 -4
- data/test_app/db/schema.rb +26 -26
- metadata +35 -28
- data/app/views/orders/edit.html.haml +0 -25
- data/app/views/orders/ship.haml +0 -91
- data/app/views/purchases/edit.html.haml +0 -9
- data/spec/features/orders_spec.rb +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5a250e67581a19d766fe34f4a709767f98009a9
|
4
|
+
data.tar.gz: e3e194b64e268b120c6c2fa8d7717f994e829f29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbab3c7fc0c5bdf018d17ed4175503457ce388c28d6237a51f589dc0639d3db1e57c794af46bb61d6b6ae0a9e548a425d15f055f4b9dff897717adb51683d5e8
|
7
|
+
data.tar.gz: 0ed90018649cf76d4eda077d5bc142526fdce061ada06423c7d5e08d49997036e16b7dad61b071b968709e0732445456cd7e1960ebc10238e41185519a841304
|
data/Gemfile
CHANGED
@@ -5,15 +5,19 @@ gem "office_clerk" , :path => "../"
|
|
5
5
|
gem 'sqlite3'
|
6
6
|
|
7
7
|
#asset / production reelated
|
8
|
-
gem "therubyracer"
|
9
|
-
gem "libv8" , "3.16.14.
|
8
|
+
gem "therubyracer"
|
9
|
+
gem "libv8" , "3.16.14.13"
|
10
10
|
gem "rb-readline"
|
11
11
|
gem 'uglifier', '>= 1.3.0'
|
12
12
|
|
13
|
+
# those guys dropped 1.9 support, but i haven't
|
14
|
+
gem "autoprefixer-rails" , '< 6.0' , :platform => [:ruby_19]
|
15
|
+
|
13
16
|
group :development do
|
14
17
|
gem 'better_errors' , :platforms=>[:mri_20, :mri_21, :rbx]
|
15
18
|
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :mri_21,:rbx]
|
16
19
|
gem 'quiet_assets'
|
20
|
+
gem "i18n-tasks"
|
17
21
|
end
|
18
22
|
group :test do
|
19
23
|
gem "codeclimate-test-reporter"
|
data/Gemfile.lock
CHANGED
@@ -1,60 +1,72 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../
|
3
3
|
specs:
|
4
|
-
office_clerk (0.
|
4
|
+
office_clerk (0.9)
|
5
5
|
bcrypt-ruby (~> 3.1)
|
6
|
-
best_in_place
|
6
|
+
best_in_place (~> 3.0)
|
7
7
|
bootstrap-sass (~> 3.1)
|
8
8
|
bootstrap_form (~> 2.2)
|
9
9
|
coffee-rails (~> 4.0)
|
10
|
-
gon
|
10
|
+
gon (~> 5.2)
|
11
11
|
haml (~> 4.0)
|
12
12
|
jquery-rails (~> 3.1)
|
13
13
|
jquery-ui-rails (~> 5.0)
|
14
14
|
kramdown (~> 1.5)
|
15
|
-
paperclip (~> 4.
|
16
|
-
rails (~> 4.
|
15
|
+
paperclip (~> 4.0)
|
16
|
+
rails (~> 4.2, < 5.0)
|
17
17
|
rails-i18n (~> 4.0)
|
18
|
-
ransack (~> 1.
|
19
|
-
sass-rails (~>
|
20
|
-
valid_email (~> 0.0.10)
|
18
|
+
ransack (~> 1.7)
|
19
|
+
sass-rails (~> 5.0)
|
20
|
+
valid_email (~> 0.0, >= 0.0.10)
|
21
21
|
will_paginate-bootstrap (~> 1.0)
|
22
22
|
|
23
23
|
GEM
|
24
24
|
remote: https://rubygems.org/
|
25
25
|
specs:
|
26
|
-
actionmailer (4.
|
27
|
-
actionpack (= 4.
|
28
|
-
actionview (= 4.
|
26
|
+
actionmailer (4.2.5)
|
27
|
+
actionpack (= 4.2.5)
|
28
|
+
actionview (= 4.2.5)
|
29
|
+
activejob (= 4.2.5)
|
29
30
|
mail (~> 2.5, >= 2.5.4)
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
31
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
32
|
+
actionpack (4.2.5)
|
33
|
+
actionview (= 4.2.5)
|
34
|
+
activesupport (= 4.2.5)
|
35
|
+
rack (~> 1.6)
|
34
36
|
rack-test (~> 0.6.2)
|
35
|
-
|
36
|
-
|
37
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
38
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
39
|
+
actionview (4.2.5)
|
40
|
+
activesupport (= 4.2.5)
|
37
41
|
builder (~> 3.1)
|
38
42
|
erubis (~> 2.7.0)
|
39
|
-
|
40
|
-
|
43
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
44
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
45
|
+
activejob (4.2.5)
|
46
|
+
activesupport (= 4.2.5)
|
47
|
+
globalid (>= 0.3.0)
|
48
|
+
activemodel (4.2.5)
|
49
|
+
activesupport (= 4.2.5)
|
41
50
|
builder (~> 3.1)
|
42
|
-
activerecord (4.
|
43
|
-
activemodel (= 4.
|
44
|
-
activesupport (= 4.
|
45
|
-
arel (~>
|
46
|
-
activesupport (4.
|
47
|
-
i18n (~> 0.
|
51
|
+
activerecord (4.2.5)
|
52
|
+
activemodel (= 4.2.5)
|
53
|
+
activesupport (= 4.2.5)
|
54
|
+
arel (~> 6.0)
|
55
|
+
activesupport (4.2.5)
|
56
|
+
i18n (~> 0.7)
|
48
57
|
json (~> 1.7, >= 1.7.7)
|
49
58
|
minitest (~> 5.1)
|
50
|
-
thread_safe (~> 0.
|
59
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
51
60
|
tzinfo (~> 1.1)
|
52
61
|
addressable (2.3.6)
|
53
|
-
arel (
|
54
|
-
|
62
|
+
arel (6.0.3)
|
63
|
+
autoprefixer-rails (5.2.1.3)
|
64
|
+
execjs
|
65
|
+
json
|
66
|
+
bcrypt (3.1.10)
|
55
67
|
bcrypt-ruby (3.1.5)
|
56
68
|
bcrypt (>= 3.1.3)
|
57
|
-
best_in_place (3.0
|
69
|
+
best_in_place (3.1.0)
|
58
70
|
actionpack (>= 3.2)
|
59
71
|
railties (>= 3.2)
|
60
72
|
better_errors (2.0.0)
|
@@ -63,11 +75,12 @@ GEM
|
|
63
75
|
rack (>= 0.9.0)
|
64
76
|
binding_of_caller (0.7.2)
|
65
77
|
debug_inspector (>= 0.0.1)
|
66
|
-
bootstrap-sass (3.3.
|
67
|
-
|
68
|
-
|
78
|
+
bootstrap-sass (3.3.6)
|
79
|
+
autoprefixer-rails (>= 5.2.1)
|
80
|
+
sass (>= 3.3.4)
|
81
|
+
bootstrap_form (2.3.0)
|
69
82
|
builder (3.2.2)
|
70
|
-
capybara (2.
|
83
|
+
capybara (2.5.0)
|
71
84
|
mime-types (>= 1.16)
|
72
85
|
nokogiri (>= 1.3.3)
|
73
86
|
rack (>= 1.0.0)
|
@@ -81,7 +94,7 @@ GEM
|
|
81
94
|
timers (~> 4.0.0)
|
82
95
|
climate_control (0.0.3)
|
83
96
|
activesupport (>= 3.0)
|
84
|
-
cocaine (0.5.
|
97
|
+
cocaine (0.5.8)
|
85
98
|
climate_control (>= 0.0.3, < 1.0)
|
86
99
|
codeclimate-test-reporter (0.4.1)
|
87
100
|
simplecov (>= 0.7.1, < 1.0.0)
|
@@ -89,123 +102,159 @@ GEM
|
|
89
102
|
coffee-rails (4.1.0)
|
90
103
|
coffee-script (>= 2.2.0)
|
91
104
|
railties (>= 4.0.0, < 5.0)
|
92
|
-
coffee-script (2.
|
105
|
+
coffee-script (2.4.1)
|
93
106
|
coffee-script-source
|
94
107
|
execjs
|
95
|
-
coffee-script-source (1.
|
108
|
+
coffee-script-source (1.10.0)
|
96
109
|
colored (1.2)
|
110
|
+
concurrent-ruby (1.0.0)
|
97
111
|
database_cleaner (1.3.0)
|
98
112
|
debug_inspector (0.0.2)
|
99
113
|
diff-lcs (1.2.5)
|
100
114
|
docile (1.1.5)
|
115
|
+
easy_translate (0.5.0)
|
116
|
+
json
|
117
|
+
thread
|
118
|
+
thread_safe
|
101
119
|
email_spec (1.6.0)
|
102
120
|
launchy (~> 2.1)
|
103
121
|
mail (~> 2.2)
|
104
122
|
erubis (2.7.0)
|
105
|
-
execjs (2.
|
123
|
+
execjs (2.6.0)
|
106
124
|
factory_girl (4.5.0)
|
107
125
|
activesupport (>= 3.0.0)
|
108
126
|
factory_girl_rails (4.5.0)
|
109
127
|
factory_girl (~> 4.5.0)
|
110
128
|
railties (>= 3.0.0)
|
111
|
-
ffi (1.9.
|
129
|
+
ffi (1.9.10)
|
112
130
|
formatador (0.2.5)
|
131
|
+
globalid (0.3.6)
|
132
|
+
activesupport (>= 4.1.0)
|
113
133
|
gon (5.2.3)
|
114
134
|
actionpack (>= 2.3.0)
|
115
135
|
json
|
116
136
|
multi_json
|
117
137
|
request_store (>= 1.0.5)
|
118
|
-
guard (2.
|
138
|
+
guard (2.13.0)
|
119
139
|
formatador (>= 0.2.4)
|
120
|
-
listen (
|
140
|
+
listen (>= 2.7, <= 4.0)
|
121
141
|
lumberjack (~> 1.0)
|
142
|
+
nenv (~> 0.1)
|
143
|
+
notiffany (~> 0.0)
|
122
144
|
pry (>= 0.9.12)
|
145
|
+
shellany (~> 0.0)
|
123
146
|
thor (>= 0.18.1)
|
124
147
|
guard-rails (0.7.0)
|
125
148
|
guard (~> 2.0)
|
126
149
|
guard-rspec (4.3.1)
|
127
150
|
guard (~> 2.1)
|
128
151
|
rspec (>= 2.14, < 4.0)
|
129
|
-
haml (4.0.
|
152
|
+
haml (4.0.7)
|
130
153
|
tilt
|
131
|
-
|
132
|
-
hitimes (1.2.
|
133
|
-
i18n (0.
|
154
|
+
highline (1.6.21)
|
155
|
+
hitimes (1.2.3)
|
156
|
+
i18n (0.7.0)
|
134
157
|
i18n-spec (0.6.0)
|
135
158
|
iso
|
159
|
+
i18n-tasks (0.7.8)
|
160
|
+
activesupport
|
161
|
+
easy_translate (>= 0.5.0)
|
162
|
+
erubis
|
163
|
+
highline
|
164
|
+
i18n
|
165
|
+
slop (>= 3.5.0)
|
166
|
+
term-ansicolor
|
167
|
+
terminal-table
|
136
168
|
iso (0.2.1)
|
137
169
|
i18n
|
138
|
-
jquery-rails (3.1.
|
170
|
+
jquery-rails (3.1.4)
|
139
171
|
railties (>= 3.0, < 5.0)
|
140
172
|
thor (>= 0.14, < 2.0)
|
141
|
-
jquery-ui-rails (5.0.
|
173
|
+
jquery-ui-rails (5.0.5)
|
142
174
|
railties (>= 3.2.16)
|
143
|
-
json (1.8.
|
144
|
-
kramdown (1.
|
175
|
+
json (1.8.3)
|
176
|
+
kramdown (1.9.0)
|
145
177
|
launchy (2.4.3)
|
146
178
|
addressable (~> 2.3)
|
147
|
-
libv8 (3.16.14.
|
148
|
-
listen (2.
|
149
|
-
celluloid (
|
179
|
+
libv8 (3.16.14.13)
|
180
|
+
listen (2.10.1)
|
181
|
+
celluloid (~> 0.16.0)
|
150
182
|
rb-fsevent (>= 0.9.3)
|
151
183
|
rb-inotify (>= 0.9)
|
184
|
+
loofah (2.0.3)
|
185
|
+
nokogiri (>= 1.5.9)
|
152
186
|
lumberjack (1.0.9)
|
153
187
|
mail (2.6.3)
|
154
188
|
mime-types (>= 1.16, < 3)
|
155
189
|
method_source (0.8.2)
|
156
|
-
mime-types (2.
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
190
|
+
mime-types (2.99)
|
191
|
+
mimemagic (0.3.0)
|
192
|
+
mini_portile2 (2.0.0)
|
193
|
+
minitest (5.8.3)
|
194
|
+
multi_json (1.11.2)
|
195
|
+
nenv (0.2.0)
|
196
|
+
nokogiri (1.6.7)
|
197
|
+
mini_portile2 (~> 2.0.0.rc2)
|
198
|
+
notiffany (0.0.8)
|
199
|
+
nenv (~> 0.1)
|
200
|
+
shellany (~> 0.0)
|
201
|
+
paperclip (4.3.2)
|
202
|
+
activemodel (>= 3.2.0)
|
203
|
+
activesupport (>= 3.2.0)
|
204
|
+
cocaine (~> 0.5.5)
|
166
205
|
mime-types
|
167
|
-
|
206
|
+
mimemagic (= 0.3.0)
|
207
|
+
polyamorous (1.3.0)
|
168
208
|
activerecord (>= 3.0)
|
169
|
-
pry (0.10.
|
209
|
+
pry (0.10.2)
|
170
210
|
coderay (~> 1.1.0)
|
171
211
|
method_source (~> 0.8.1)
|
172
212
|
slop (~> 3.4)
|
173
213
|
quiet_assets (1.0.3)
|
174
214
|
railties (>= 3.1, < 5.0)
|
175
|
-
rack (1.
|
176
|
-
rack-test (0.6.
|
215
|
+
rack (1.6.4)
|
216
|
+
rack-test (0.6.3)
|
177
217
|
rack (>= 1.0)
|
178
|
-
rails (4.
|
179
|
-
actionmailer (= 4.
|
180
|
-
actionpack (= 4.
|
181
|
-
actionview (= 4.
|
182
|
-
|
183
|
-
|
184
|
-
|
218
|
+
rails (4.2.5)
|
219
|
+
actionmailer (= 4.2.5)
|
220
|
+
actionpack (= 4.2.5)
|
221
|
+
actionview (= 4.2.5)
|
222
|
+
activejob (= 4.2.5)
|
223
|
+
activemodel (= 4.2.5)
|
224
|
+
activerecord (= 4.2.5)
|
225
|
+
activesupport (= 4.2.5)
|
185
226
|
bundler (>= 1.3.0, < 2.0)
|
186
|
-
railties (= 4.
|
187
|
-
sprockets-rails
|
188
|
-
rails-
|
189
|
-
|
227
|
+
railties (= 4.2.5)
|
228
|
+
sprockets-rails
|
229
|
+
rails-deprecated_sanitizer (1.0.3)
|
230
|
+
activesupport (>= 4.2.0.alpha)
|
231
|
+
rails-dom-testing (1.0.7)
|
232
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
233
|
+
nokogiri (~> 1.6.0)
|
234
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
235
|
+
rails-html-sanitizer (1.0.2)
|
236
|
+
loofah (~> 2.0)
|
237
|
+
rails-i18n (4.0.7)
|
238
|
+
i18n (~> 0.7)
|
190
239
|
railties (~> 4.0)
|
191
|
-
railties (4.
|
192
|
-
actionpack (= 4.
|
193
|
-
activesupport (= 4.
|
240
|
+
railties (4.2.5)
|
241
|
+
actionpack (= 4.2.5)
|
242
|
+
activesupport (= 4.2.5)
|
194
243
|
rake (>= 0.8.7)
|
195
244
|
thor (>= 0.18.1, < 2.0)
|
196
|
-
rake (10.4.
|
197
|
-
ransack (1.
|
245
|
+
rake (10.4.2)
|
246
|
+
ransack (1.7.0)
|
198
247
|
actionpack (>= 3.0)
|
199
248
|
activerecord (>= 3.0)
|
200
249
|
activesupport (>= 3.0)
|
201
250
|
i18n
|
202
|
-
polyamorous (~> 1.
|
203
|
-
rb-fsevent (0.9.
|
251
|
+
polyamorous (~> 1.2)
|
252
|
+
rb-fsevent (0.9.6)
|
204
253
|
rb-inotify (0.9.5)
|
205
254
|
ffi (>= 0.5.0)
|
206
255
|
rb-readline (0.5.1)
|
207
256
|
ref (1.0.5)
|
208
|
-
request_store (1.1
|
257
|
+
request_store (1.2.1)
|
209
258
|
rspec (3.1.0)
|
210
259
|
rspec-core (~> 3.1.0)
|
211
260
|
rspec-expectations (~> 3.1.0)
|
@@ -226,42 +275,47 @@ GEM
|
|
226
275
|
rspec-mocks (~> 3.1.0)
|
227
276
|
rspec-support (~> 3.1.0)
|
228
277
|
rspec-support (3.1.2)
|
229
|
-
sass (3.
|
230
|
-
sass-rails (
|
278
|
+
sass (3.4.20)
|
279
|
+
sass-rails (5.0.4)
|
231
280
|
railties (>= 4.0.0, < 5.0)
|
232
|
-
sass (~> 3.
|
233
|
-
sprockets (
|
234
|
-
sprockets-rails (
|
281
|
+
sass (~> 3.1)
|
282
|
+
sprockets (>= 2.8, < 4.0)
|
283
|
+
sprockets-rails (>= 2.0, < 4.0)
|
284
|
+
tilt (>= 1.1, < 3)
|
285
|
+
shellany (0.0.1)
|
235
286
|
simplecov (0.9.1)
|
236
287
|
docile (~> 1.1.0)
|
237
288
|
multi_json (~> 1.0)
|
238
289
|
simplecov-html (~> 0.8.0)
|
239
290
|
simplecov-html (0.8.0)
|
240
291
|
slop (3.6.0)
|
241
|
-
sprockets (
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
tilt (~> 1.1, != 1.3.0)
|
246
|
-
sprockets-rails (2.2.2)
|
292
|
+
sprockets (3.5.2)
|
293
|
+
concurrent-ruby (~> 1.0)
|
294
|
+
rack (> 1, < 3)
|
295
|
+
sprockets-rails (2.3.3)
|
247
296
|
actionpack (>= 3.0)
|
248
297
|
activesupport (>= 3.0)
|
249
298
|
sprockets (>= 2.8, < 4.0)
|
250
299
|
sqlite3 (1.3.10)
|
300
|
+
term-ansicolor (1.3.0)
|
301
|
+
tins (~> 1.0)
|
302
|
+
terminal-table (1.4.5)
|
251
303
|
therubyracer (0.12.1)
|
252
304
|
libv8 (~> 3.16.14.0)
|
253
305
|
ref
|
254
306
|
thor (0.19.1)
|
255
|
-
|
256
|
-
|
257
|
-
|
307
|
+
thread (0.1.4)
|
308
|
+
thread_safe (0.3.5)
|
309
|
+
tilt (2.0.1)
|
310
|
+
timers (4.0.4)
|
258
311
|
hitimes
|
312
|
+
tins (1.3.3)
|
259
313
|
tzinfo (1.2.2)
|
260
314
|
thread_safe (~> 0.1)
|
261
315
|
uglifier (2.5.3)
|
262
316
|
execjs (>= 0.3.0)
|
263
317
|
json (>= 1.8.0)
|
264
|
-
valid_email (0.0.
|
318
|
+
valid_email (0.0.11)
|
265
319
|
activemodel
|
266
320
|
mail (~> 2.6.1)
|
267
321
|
will_paginate (3.0.7)
|
@@ -274,6 +328,7 @@ PLATFORMS
|
|
274
328
|
ruby
|
275
329
|
|
276
330
|
DEPENDENCIES
|
331
|
+
autoprefixer-rails (< 6.0)
|
277
332
|
better_errors
|
278
333
|
binding_of_caller
|
279
334
|
capybara
|
@@ -285,7 +340,8 @@ DEPENDENCIES
|
|
285
340
|
guard-rails
|
286
341
|
guard-rspec
|
287
342
|
i18n-spec
|
288
|
-
|
343
|
+
i18n-tasks
|
344
|
+
libv8 (= 3.16.14.13)
|
289
345
|
office_clerk!
|
290
346
|
quiet_assets
|
291
347
|
rb-readline
|
@@ -293,3 +349,6 @@ DEPENDENCIES
|
|
293
349
|
sqlite3
|
294
350
|
therubyracer
|
295
351
|
uglifier (>= 1.3.0)
|
352
|
+
|
353
|
+
BUNDLED WITH
|
354
|
+
1.10.6
|