economy 4.0.0.0 → 4.0.1.0
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.
- checksums.yaml +4 -4
- data/README.md +3 -9
- data/lib/economy/cache.rb +5 -8
- data/lib/economy/configuration.rb +2 -2
- data/lib/economy/version.rb +1 -1
- data/lib/generators/economy/install/templates/initializer.rb +1 -1
- data/test/dummy/config/application.rb +1 -0
- data/test/dummy/config/environments/test.rb +0 -3
- data/test/dummy/config/initializers/economy.rb +3 -2
- data/test/dummy/db/schema.rb +45 -0
- data/test/dummy/log/development.log +56 -0
- data/test/dummy/log/test.log +1865 -0
- metadata +8 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: economy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mmontossi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -135,6 +135,9 @@ files:
|
|
135
135
|
- test/dummy/db/migrate/20161115135521_create_exchanges.rb
|
136
136
|
- test/dummy/db/migrate/20161115145905_create_products.rb
|
137
137
|
- test/dummy/db/migrate/20161115150024_create_plans.rb
|
138
|
+
- test/dummy/db/schema.rb
|
139
|
+
- test/dummy/log/development.log
|
140
|
+
- test/dummy/log/test.log
|
138
141
|
- test/dummy/public/404.html
|
139
142
|
- test/dummy/public/422.html
|
140
143
|
- test/dummy/public/500.html
|
@@ -210,6 +213,9 @@ test_files:
|
|
210
213
|
- test/dummy/db/migrate/20161115135521_create_exchanges.rb
|
211
214
|
- test/dummy/db/migrate/20161115145905_create_products.rb
|
212
215
|
- test/dummy/db/migrate/20161115150024_create_plans.rb
|
216
|
+
- test/dummy/db/schema.rb
|
217
|
+
- test/dummy/log/development.log
|
218
|
+
- test/dummy/log/test.log
|
213
219
|
- test/dummy/public/404.html
|
214
220
|
- test/dummy/public/422.html
|
215
221
|
- test/dummy/public/500.html
|