neo4apis-activerecord 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6811ed3c3bf654e8fddaa172bafa0ae4437fe2a1
4
- data.tar.gz: fc0f1bd40634d0536f4ec1b6c57ca30ab9e87066
3
+ metadata.gz: 0706c9d104595af2a52ddbc315361902f558f0c9
4
+ data.tar.gz: 07ff2e98764387cb0e69fd2aed3c3c08dcbb3821
5
5
  SHA512:
6
- metadata.gz: 2fd87fb7dfb12e55ca4beb4d17e0c4599f07b33d337f0b904f8e5cb0e81dd2b07b4f156b3d2bf0d15ff29f0ef705376dc6afe32ec305ef154326e5d4b691a144
7
- data.tar.gz: 29cc32da3846f63a07cf7442804b4e3a0ac54572b28e718137fe9e33d775dfccd43b5da8e55a3c9084c15f3cbb79dd3f529b9465f5fa452080e3dcbd20138c93
6
+ metadata.gz: e1aa43e045756944de599cad3db6bac7f0b1c209ed12d6df6f33c743a7c068d5fbd9aca687603bf6394dbf7b946941f287c15d2c420ae11879aea6af0743c0d8
7
+ data.tar.gz: 87514ff0ad2d9cced4bf0272fba7524b8f0810fdc341c8b1dfa125e4eb14842e11460d0bd79fbda733ff74ba1b3c86987f8c84f4368b923217b8067b0c108db5
data/README.md CHANGED
@@ -6,11 +6,11 @@
6
6
 
7
7
  Without existing ActiveRecord application:
8
8
 
9
- neo4apis activerecord all_tables --import-all-associations --identify-model
9
+ neo4apis activerecord all_tables --identify-model --import-all-associations
10
10
 
11
11
  or
12
12
 
13
- neo4apis activerecord tables posts comments --import-all-associations --identify-model
13
+ neo4apis activerecord tables posts comments --identify-model --import-all-associations
14
14
 
15
15
  With existing ActiveRecord application:
16
16
 
@@ -6,8 +6,6 @@ require 'colorize'
6
6
  module Neo4Apis
7
7
  module CLI
8
8
  class ActiveRecord < Thor
9
- class_option :config_path, type: :string, default: 'config/database.yml'
10
-
11
9
  class_option :import_all_associations, type: :boolean, default: false, desc: 'Shortcut for --import-belongs-to --import-has-many --import-has-one'
12
10
  class_option :import_belongs_to, type: :boolean, default: nil
13
11
  class_option :import_has_one, type: :boolean, default: nil
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'neo4apis-activerecord'
6
- s.version = '0.5.2'
6
+ s.version = '0.5.3'
7
7
  s.required_ruby_version = '>= 1.9.1'
8
8
 
9
9
  s.authors = 'Brian Underwood'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4apis-activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Underwood