peak_flow_utils 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/services/peak_flow_utils/database_initializer_service.rb +1 -1
- data/{app → lib/peak_flow_utils}/migrations/20150902155200_create_translation_keys.rb +0 -0
- data/{app → lib/peak_flow_utils}/migrations/20150907070909_create_groups.rb +0 -0
- data/{app → lib/peak_flow_utils}/migrations/20150907090900_create_handlers.rb +0 -0
- data/{app → lib/peak_flow_utils}/migrations/20150908085500_create_translation_values.rb +0 -0
- data/{app → lib/peak_flow_utils}/migrations/20150908090800_create_handler_texts.rb +0 -0
- data/{app → lib/peak_flow_utils}/migrations/20160411190500_create_scanned_files.rb +0 -0
- data/{app → lib/peak_flow_utils}/migrations/peak_flow_utils/application_migration.rb +0 -0
- data/lib/peak_flow_utils/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2597a5beeae85a06621179e61b6b483d4fff460241db1a819b6b02aa4f2c4007
|
4
|
+
data.tar.gz: eefa2aa24b4c5ca37560532bcb22aafc48a3f781274b00c3dce8e039d0234b82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abd5d1250ea3eb5ed47af62eaf54efdecc14b036c33f22be5dbea77451a76ca6f694c77205940cbb8ebd8cd8f83cf9d8ca08c4ccbae8c205c1279cf9804fb3f7
|
7
|
+
data.tar.gz: e902d81c5f5acf3918d162da6442d974b485a4c0054833af1bc7d12546fe157b4237f72d21fe28e42e146107f645bda990100ab9c707ab987ed217a21646a24b
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class PeakFlowUtils::DatabaseInitializerService < PeakFlowUtils::ApplicationService
|
2
2
|
def execute
|
3
|
-
path = File.realpath("#{File.dirname(__FILE__)}
|
3
|
+
path = File.realpath("#{File.dirname(__FILE__)}/../../../lib/peak_flow_utils/migrations")
|
4
4
|
create_schema_table unless schema_table_exists?
|
5
5
|
|
6
6
|
Dir["#{path}/[0-9]*_*.rb"].sort.map do |filename|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: peak_flow_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kaspernj
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-02-
|
11
|
+
date: 2020-02-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -149,13 +149,6 @@ files:
|
|
149
149
|
- app/helpers/peak_flow_utils/application_helper.rb
|
150
150
|
- app/jobs/peak_flow_utils/application_job.rb
|
151
151
|
- app/mailers/peak_flow_utils/application_mailer.rb
|
152
|
-
- app/migrations/20150902155200_create_translation_keys.rb
|
153
|
-
- app/migrations/20150907070909_create_groups.rb
|
154
|
-
- app/migrations/20150907090900_create_handlers.rb
|
155
|
-
- app/migrations/20150908085500_create_translation_values.rb
|
156
|
-
- app/migrations/20150908090800_create_handler_texts.rb
|
157
|
-
- app/migrations/20160411190500_create_scanned_files.rb
|
158
|
-
- app/migrations/peak_flow_utils/application_migration.rb
|
159
152
|
- app/models/peak_flow_utils/application_record.rb
|
160
153
|
- app/models/peak_flow_utils/group.rb
|
161
154
|
- app/models/peak_flow_utils/handler.rb
|
@@ -181,6 +174,13 @@ files:
|
|
181
174
|
- lib/peak_flow_utils.rb
|
182
175
|
- lib/peak_flow_utils/engine.rb
|
183
176
|
- lib/peak_flow_utils/handler_helper.rb
|
177
|
+
- lib/peak_flow_utils/migrations/20150902155200_create_translation_keys.rb
|
178
|
+
- lib/peak_flow_utils/migrations/20150907070909_create_groups.rb
|
179
|
+
- lib/peak_flow_utils/migrations/20150907090900_create_handlers.rb
|
180
|
+
- lib/peak_flow_utils/migrations/20150908085500_create_translation_values.rb
|
181
|
+
- lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
|
182
|
+
- lib/peak_flow_utils/migrations/20160411190500_create_scanned_files.rb
|
183
|
+
- lib/peak_flow_utils/migrations/peak_flow_utils/application_migration.rb
|
184
184
|
- lib/peak_flow_utils/rspec_helper.rb
|
185
185
|
- lib/peak_flow_utils/version.rb
|
186
186
|
- lib/tasks/peak_flow_utils_tasks.rake
|