standalone_migrations 1.0.5 → 1.0.6
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.
- data/README.markdown +6 -6
- data/lib/standalone_migrations/configurator.rb +1 -0
- data/standalone_migrations.gemspec +9 -9
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -132,12 +132,12 @@ named .standalone_migrations in the root of your project containing
|
|
|
132
132
|
the following:
|
|
133
133
|
|
|
134
134
|
```yaml
|
|
135
|
-
db:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
config:
|
|
140
|
-
|
|
135
|
+
db:
|
|
136
|
+
seeds: db/seeds.rb
|
|
137
|
+
migrate: db/migrate
|
|
138
|
+
schema: db/schema.rb
|
|
139
|
+
config:
|
|
140
|
+
database: db/config.yml
|
|
141
141
|
```
|
|
142
142
|
|
|
143
143
|
These are the configurable options available. You can omit any of
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "1.0.
|
|
7
|
+
s.name = "standalone_migrations"
|
|
8
|
+
s.version = "1.0.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = [
|
|
12
|
-
s.date =
|
|
13
|
-
s.email =
|
|
11
|
+
s.authors = ["Todd Huss", "Michael Grosser"]
|
|
12
|
+
s.date = "2012-02-12"
|
|
13
|
+
s.email = "thuss@gabrito.com"
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"README.markdown"
|
|
16
16
|
]
|
|
@@ -32,10 +32,10 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
"vendor/migration_helpers/init.rb",
|
|
33
33
|
"vendor/migration_helpers/lib/migration_helper.rb"
|
|
34
34
|
]
|
|
35
|
-
s.homepage =
|
|
36
|
-
s.require_paths = [
|
|
37
|
-
s.rubygems_version =
|
|
38
|
-
s.summary =
|
|
35
|
+
s.homepage = "http://github.com/thuss/standalone-migrations"
|
|
36
|
+
s.require_paths = ["lib"]
|
|
37
|
+
s.rubygems_version = "1.8.15"
|
|
38
|
+
s.summary = "A thin wrapper to use Rails Migrations in non Rails projects"
|
|
39
39
|
|
|
40
40
|
if s.respond_to? :specification_version then
|
|
41
41
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: standalone_migrations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.0.
|
|
5
|
+
version: 1.0.6
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Todd Huss
|
|
@@ -11,7 +11,7 @@ autorequire:
|
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
13
|
|
|
14
|
-
date:
|
|
14
|
+
date: 2012-02-12 00:00:00 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rake
|
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
requirements: []
|
|
84
84
|
|
|
85
85
|
rubyforge_project:
|
|
86
|
-
rubygems_version: 1.8.
|
|
86
|
+
rubygems_version: 1.8.15
|
|
87
87
|
signing_key:
|
|
88
88
|
specification_version: 3
|
|
89
89
|
summary: A thin wrapper to use Rails Migrations in non Rails projects
|