active-record-binder 1.1.0 → 1.2.0

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.
Files changed (47) hide show
  1. data/README.md +217 -0
  2. data/bin/arb +13 -0
  3. data/doc/Binder.html +150 -0
  4. data/doc/Binder/AR.html +1880 -0
  5. data/doc/Binder/Command.html +252 -0
  6. data/doc/Binder/Help.html +374 -0
  7. data/doc/Binder/Migrate.html +682 -0
  8. data/doc/Binder/Strategy.html +550 -0
  9. data/doc/Binder/Version.html +285 -0
  10. data/doc/Class.html +220 -0
  11. data/doc/CommandParser.html +268 -0
  12. data/doc/CommandParser/ParseError.html +123 -0
  13. data/doc/DeferedDelegator.html +414 -0
  14. data/doc/MigrationProcessError.html +123 -0
  15. data/doc/MigrationVersionError.html +123 -0
  16. data/doc/String.html +245 -0
  17. data/doc/_index.html +256 -0
  18. data/doc/class_list.html +53 -0
  19. data/doc/css/common.css +1 -0
  20. data/doc/css/full_list.css +57 -0
  21. data/doc/css/style.css +328 -0
  22. data/doc/file.README.html +300 -0
  23. data/doc/file_list.html +55 -0
  24. data/doc/frames.html +28 -0
  25. data/doc/index.html +300 -0
  26. data/doc/js/app.js +214 -0
  27. data/doc/js/full_list.js +173 -0
  28. data/doc/js/jquery.js +4 -0
  29. data/doc/method_list.html +348 -0
  30. data/doc/top-level-namespace.html +114 -0
  31. data/extras/cli_help.png +0 -0
  32. data/lib/active_record_binder.rb +21 -37
  33. data/lib/cli/command.rb +101 -0
  34. data/lib/cli/command_parser.rb +29 -0
  35. data/lib/cli/commands/commands.rb +4 -0
  36. data/lib/cli/commands/help.rb +35 -0
  37. data/lib/cli/commands/migrate.rb +77 -0
  38. data/lib/cli/commands/version.rb +16 -0
  39. data/lib/cli/core_ext.rb +21 -0
  40. data/lib/defered_delegator.rb +69 -0
  41. data/lib/version.rb +3 -0
  42. data/test/active_record_binder_test.rb +262 -0
  43. data/test/foo.sqlite3 +0 -0
  44. data/test/migrations.rb +29 -0
  45. data/test/minitest_helper.rb +15 -0
  46. data/test/mocks.rb +24 -0
  47. metadata +62 -5
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active-record-binder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,15 +10,72 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-02-20 00:00:00.000000000 Z
13
- dependencies: []
14
- description: Ruby library to ease the process of interfacing with ActiveRecord. Allows
15
- to create simple and elegant migrations.
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activerecord
16
+ requirement: &2152161500 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *2152161500
25
+ description: A Ruby library to ease the process of interfacing with ActiveRecord.
26
+ Allows to create simple and elegant migrations.
16
27
  email: dehan.gabriel@gmail.com
17
- executables: []
28
+ executables:
29
+ - arb
18
30
  extensions: []
19
31
  extra_rdoc_files: []
20
32
  files:
33
+ - README.md
34
+ - bin/arb
35
+ - doc/_index.html
36
+ - doc/Binder/AR.html
37
+ - doc/Binder/Command.html
38
+ - doc/Binder/Help.html
39
+ - doc/Binder/Migrate.html
40
+ - doc/Binder/Strategy.html
41
+ - doc/Binder/Version.html
42
+ - doc/Binder.html
43
+ - doc/Class.html
44
+ - doc/class_list.html
45
+ - doc/CommandParser/ParseError.html
46
+ - doc/CommandParser.html
47
+ - doc/css/common.css
48
+ - doc/css/full_list.css
49
+ - doc/css/style.css
50
+ - doc/DeferedDelegator.html
51
+ - doc/file.README.html
52
+ - doc/file_list.html
53
+ - doc/frames.html
54
+ - doc/index.html
55
+ - doc/js/app.js
56
+ - doc/js/full_list.js
57
+ - doc/js/jquery.js
58
+ - doc/method_list.html
59
+ - doc/MigrationProcessError.html
60
+ - doc/MigrationVersionError.html
61
+ - doc/String.html
62
+ - doc/top-level-namespace.html
63
+ - test/active_record_binder_test.rb
64
+ - test/foo.sqlite3
65
+ - test/migrations.rb
66
+ - test/minitest_helper.rb
67
+ - test/mocks.rb
21
68
  - lib/active_record_binder.rb
69
+ - lib/cli/command.rb
70
+ - lib/cli/command_parser.rb
71
+ - lib/cli/commands/commands.rb
72
+ - lib/cli/commands/help.rb
73
+ - lib/cli/commands/migrate.rb
74
+ - lib/cli/commands/version.rb
75
+ - lib/cli/core_ext.rb
76
+ - lib/defered_delegator.rb
77
+ - lib/version.rb
78
+ - extras/cli_help.png
22
79
  homepage: https://github.com/gabriel-dehan/ActiveRecordBinder
23
80
  licenses: []
24
81
  post_install_message: