sfb_scripts 0.1.3 → 0.1.4
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/lib/migrator.rb +2 -3
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c25478096a96443654c5b18730012c7bd085d8c1
|
|
4
|
+
data.tar.gz: 590320e8848c363e490860e0ef2c90dc89938479
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8817e13fc7f3fbc658314c3d45e353059adda7608b34f960f21b732d0e35031fe4a99aceb80a509fc773c874c6d80545e92eda351136d03fce0df9428cbc4ced
|
|
7
|
+
data.tar.gz: c351955dd31c31cc70b9124522b689b29231cf547487e3063a0ebf1946b4fec307b9e8b1f2986f7a7b5e5f0901df5b60d746e33849f22b8c2ea9987566e08481
|
data/lib/migrator.rb
CHANGED
|
@@ -8,9 +8,8 @@ class Migrator
|
|
|
8
8
|
|
|
9
9
|
def migrate_where_necessary
|
|
10
10
|
directories_to_migrate.each do |dir|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
shell.run "RAILS_ENV=test bundle exec rake db:migrate", dir: dir
|
|
11
|
+
shell.run "bundle exec rake db:migrate", dir: dir
|
|
12
|
+
shell.run "RAILS_ENV=test bundle exec rake db:migrate", dir: dir
|
|
14
13
|
end
|
|
15
14
|
end
|
|
16
15
|
|
metadata
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sfb_scripts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pete Kinnecom
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '0.19'
|
|
20
|
-
- -
|
|
20
|
+
- - <
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: '1.0'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- -
|
|
27
|
+
- - '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0.19'
|
|
30
|
-
- -
|
|
30
|
+
- - <
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '1.0'
|
|
33
33
|
description: Easily update your rails app and run tests from command line
|
|
@@ -70,12 +70,12 @@ require_paths:
|
|
|
70
70
|
- lib
|
|
71
71
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - '>='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '0'
|
|
76
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
|
78
|
-
- -
|
|
78
|
+
- - '>='
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
80
|
version: '0'
|
|
81
81
|
requirements: []
|
|
@@ -85,3 +85,4 @@ signing_key:
|
|
|
85
85
|
specification_version: 4
|
|
86
86
|
summary: Easily update your rails app and run tests from command line
|
|
87
87
|
test_files: []
|
|
88
|
+
has_rdoc:
|