virgo 0.1.10 → 0.1.11
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8dfaf780b5a3a70c13eb75e2f69c584f2d16af1
|
|
4
|
+
data.tar.gz: 536f709fffa75ef7784db633912a6ec90a091dd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21e58842116697d85733a7885de6d7298333858a2b3aa7cd00f8b39a6bcf5ae77135b8a01b49bb19d3a7cb6011858ceb2845d5f7fffe6b932b29315fc345981a
|
|
7
|
+
data.tar.gz: 49a4c606fca2f10435a90d017c242cd4c02c5b8dd0e2be0421133f09c8b3781810134fd7565a9b62ae9dac61ffacf64f7d40fcbc608c7a836a874725a343116b
|
|
File without changes
|
|
@@ -3,12 +3,12 @@ module Virgo
|
|
|
3
3
|
source_root File.expand_path('../../../../..', __FILE__)
|
|
4
4
|
|
|
5
5
|
def copy_migrations
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
timestamp_str = Time.zone.now.strftime("%Y%m%d%H%M%S").to_s
|
|
7
|
+
src_path = "#{engine_root}/db/migrate/create_virgo_schema.rb"
|
|
8
|
+
dest_path = "#{Rails.root}/db/migrate/#{timestamp_str}_create_virgo_schema.rb"
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
end
|
|
10
|
+
unless File.directory?(dest_path)
|
|
11
|
+
copy_file src_path, dest_path
|
|
12
12
|
end
|
|
13
13
|
end
|
|
14
14
|
|
data/lib/virgo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: virgo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicholas Zaillian
|
|
@@ -1012,7 +1012,7 @@ files:
|
|
|
1012
1012
|
- config/locales/devise.en.yml
|
|
1013
1013
|
- config/routes.rb
|
|
1014
1014
|
- config/schedule.rb
|
|
1015
|
-
- db/migrate/
|
|
1015
|
+
- db/migrate/create_virgo_schema.rb
|
|
1016
1016
|
- lib/generators/virgo/install/install_generator.rb
|
|
1017
1017
|
- lib/generators/virgo/migrations/migrations_generator.rb
|
|
1018
1018
|
- lib/generators/virgo/schedule/schedule_generator.rb
|