sidejobs 4.0.0.0 → 4.0.0.1
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 +6 -0
- data/lib/generators/sidejobs/install/install_generator.rb +1 -1
- data/lib/sidejobs/railtie.rb +1 -1
- data/lib/sidejobs/version.rb +1 -1
- data/test/daemon_test.rb +5 -5
- data/test/dummy/config/database.yml +5 -2
- data/test/dummy/db/schema.rb +37 -0
- data/test/dummy/log/development.log +23 -0
- data/test/dummy/log/sidejobs.log +279 -0
- data/test/dummy/log/test.log +1680 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidejobs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.0.
|
4
|
+
version: 4.0.0.1
|
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-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -121,6 +121,8 @@ files:
|
|
121
121
|
- test/dummy/config/routes.rb
|
122
122
|
- test/dummy/config/secrets.yml
|
123
123
|
- test/dummy/db/migrate/20161022211612_create_sidejobs.rb
|
124
|
+
- test/dummy/db/schema.rb
|
125
|
+
- test/dummy/log/development.log
|
124
126
|
- test/dummy/log/sidejobs.log
|
125
127
|
- test/dummy/log/test.log
|
126
128
|
- test/dummy/public/404.html
|
@@ -195,6 +197,8 @@ test_files:
|
|
195
197
|
- test/dummy/config/secrets.yml
|
196
198
|
- test/dummy/config.ru
|
197
199
|
- test/dummy/db/migrate/20161022211612_create_sidejobs.rb
|
200
|
+
- test/dummy/db/schema.rb
|
201
|
+
- test/dummy/log/development.log
|
198
202
|
- test/dummy/log/sidejobs.log
|
199
203
|
- test/dummy/log/test.log
|
200
204
|
- test/dummy/public/404.html
|