models-to-sql-rails 1.0.2 → 1.0.3
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/README.md +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d1e00b95389e6e9a6bf19163c2eb9822ae436ae
|
|
4
|
+
data.tar.gz: 7aac495508cd49c65b0027379afecdb437751f0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2dd8691ef0af99582c9e59ffcd0f7924bc7428abf28eb809b7057cc765e0f9b7e81cbae82e93ca7334a20686b62b6a90dbc0f6e80fb997e4bbbff6518cf06fbe
|
|
7
|
+
data.tar.gz: 65ca03495c0e642055c23607475a23ed35861ec903b49b404dd9c4ccafd05df488c8032fc097d8f650f504063364fa2f26321ba91f87f13252454cca69413c9b
|
data/README.md
CHANGED
|
@@ -10,7 +10,11 @@ Usage
|
|
|
10
10
|
---------------
|
|
11
11
|
If you want use this gem in your project, you must add the following line to your `gemfile`:
|
|
12
12
|
```ruby
|
|
13
|
+
# If you want the most recent version:
|
|
13
14
|
gem 'models-to-sql-rails', :git => 'git://github.com/paladini/models-to-sql-rails.git'
|
|
15
|
+
|
|
16
|
+
# If you want the most stable version:
|
|
17
|
+
gem "models-to-sql-rails", "~> 1.0.2"
|
|
14
18
|
```
|
|
15
19
|
Then, you must open your terminal (Ctrl+Alt+T) and run the following command on your project root path:
|
|
16
20
|
```shell
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: models-to-sql-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PagerDuty
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '1.2'
|
|
28
28
|
description: Dump ActiveRecord models graphs back into SQL or Rails fixtures format.
|
|
29
|
-
Easily convert a model or an array of models to SQL insertion.
|
|
29
|
+
Easily convert a model or an array of models to SQL insertion script.
|
|
30
30
|
email: fnpaladini@gmail.com
|
|
31
31
|
executables: []
|
|
32
32
|
extensions: []
|