db_fixtures_dump 0.1.0 → 0.1.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 +8 -8
- data/README.md +8 -5
- data/db_fixtures_dump.gemspec +2 -2
- data/lib/db_fixtures_dump/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NWEyZTk1ZTI3MGM1NzA2MWY4YmFmY2Q5MmQwMjBhZDA2ZjE5MDU5NA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDc3NjQyNjY4ZjY5MjI4YzRjNmEwYmNhYjZhNzY2MzZkNmE4MjI2Ng==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OTA4M2ZhM2FlZDQ0OGNlMzhmZWJlYTk3NmE5ZGE5MTRiZGI5OGYzMzNjMGY2
|
|
10
|
+
MjY3YmE4ZDkxZGZhZWUwNDc4NGVjMmNlNTVjNWE4NmFhYjg0YmYzZTE5NTY0
|
|
11
|
+
MWI2NDFlMDc0MjYwMmExMzNmODBiNTI1OGQzMzAxYjAzMmJmMTQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjVjMWRmMDA4ODgwZTk5ZDcwMGMwZDNkYWQ3OWQzNmRjNGYzZGFmN2E5ZmQx
|
|
14
|
+
ZjNjODNiNWVlMWM1MDFjN2QxOTZhMGYwNTQyOTMwNTJlODE0NzU4MjJiZmJi
|
|
15
|
+
ZWQ1YjAzMWE1ZmU3MDZmOTg5NWE5ZjdhYjdmNTljN2FlODg1MjI=
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# db:fixtures:dump
|
|
2
2
|
|
|
3
|
-
Adds db:fixtures:dump rake task to dump all tables into yaml fixtures
|
|
3
|
+
Adds db:fixtures:dump rake task to dump all ActiveRecord tables into yaml fixtures
|
|
4
|
+
|
|
5
|
+
May not work for tables with serialized columns.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -38,9 +40,10 @@ Just like for the db:fixtures:load , you may specify FIXTURES_PATH to be used as
|
|
|
38
40
|
|
|
39
41
|
Original gists:
|
|
40
42
|
|
|
41
|
-
http://snippets.dzone.com/posts/show/4468 by
|
|
42
|
-
https://gist.github.com/iiska/1527911
|
|
43
|
+
* http://snippets.dzone.com/posts/show/4468 by Michael Boutros
|
|
44
|
+
* https://gist.github.com/iiska/1527911
|
|
45
|
+
|
|
43
46
|
|
|
47
|
+
Making a rake task into a gem:
|
|
44
48
|
|
|
45
|
-
|
|
46
|
-
http://blog.nathanhumbert.com/2010/02/rails-3-loading-rake-tasks-from-gem.html
|
|
49
|
+
* http://blog.nathanhumbert.com/2010/02/rails-3-loading-rake-tasks-from-gem.html
|
data/db_fixtures_dump.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = DbFixturesDump::VERSION
|
|
9
9
|
spec.authors = ["Kurt Thams"]
|
|
10
10
|
spec.email = ["thams@thams.com"]
|
|
11
|
-
spec.description = %q{Rake task to dump
|
|
12
|
-
spec.summary = %q{Rake task to dump
|
|
11
|
+
spec.description = %q{Rake task to dump ActiveRecord tables into yaml fixtures}
|
|
12
|
+
spec.summary = %q{Rake task to dump ActiveRecord tables into yaml fixtures. Usage: rake db:fixtures:dump}
|
|
13
13
|
spec.homepage = "https://github.com/thams/db_fixtures_dump"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: db_fixtures_dump
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kurt Thams
|
|
@@ -38,7 +38,7 @@ dependencies:
|
|
|
38
38
|
- - ! '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description: Rake task to dump
|
|
41
|
+
description: Rake task to dump ActiveRecord tables into yaml fixtures
|
|
42
42
|
email:
|
|
43
43
|
- thams@thams.com
|
|
44
44
|
executables: []
|
|
@@ -77,6 +77,7 @@ rubyforge_project:
|
|
|
77
77
|
rubygems_version: 2.2.2
|
|
78
78
|
signing_key:
|
|
79
79
|
specification_version: 4
|
|
80
|
-
summary: Rake task to dump
|
|
80
|
+
summary: ! 'Rake task to dump ActiveRecord tables into yaml fixtures. Usage: rake
|
|
81
|
+
db:fixtures:dump'
|
|
81
82
|
test_files: []
|
|
82
83
|
has_rdoc:
|