who_am_i 0.0.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 +7 -0
- data/.gitignore +9 -0
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/Appraisals +31 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +58 -0
- data/Rakefile +11 -0
- data/bin/appraisal +18 -0
- data/bin/console +14 -0
- data/bin/m +18 -0
- data/bin/rake +18 -0
- data/bin/rubocop +18 -0
- data/bin/setup +8 -0
- data/gemfiles/rails32.gemfile +8 -0
- data/gemfiles/rails32.gemfile.lock +89 -0
- data/gemfiles/rails40.gemfile +8 -0
- data/gemfiles/rails40.gemfile.lock +94 -0
- data/gemfiles/rails41.gemfile +8 -0
- data/gemfiles/rails41.gemfile.lock +93 -0
- data/gemfiles/rails42.gemfile +8 -0
- data/gemfiles/rails42.gemfile.lock +91 -0
- data/gemfiles/rails50.gemfile +8 -0
- data/gemfiles/rails50.gemfile.lock +90 -0
- data/gemfiles/rails51.gemfile +8 -0
- data/gemfiles/rails51.gemfile.lock +90 -0
- data/lib/who_am_i/comment.rb +56 -0
- data/lib/who_am_i/error.rb +4 -0
- data/lib/who_am_i/extracted_class.rb +50 -0
- data/lib/who_am_i/function/annotate_models.rb +35 -0
- data/lib/who_am_i/function/compute_comment.rb +13 -0
- data/lib/who_am_i/function/compute_content.rb +15 -0
- data/lib/who_am_i/function/extract_model_data.rb +14 -0
- data/lib/who_am_i/function/get_tables.rb +11 -0
- data/lib/who_am_i/function/load_config.rb +45 -0
- data/lib/who_am_i/function/ls.rb +13 -0
- data/lib/who_am_i/function/main.rb +16 -0
- data/lib/who_am_i/function/parse_model.rb +14 -0
- data/lib/who_am_i/function/remove_annotation.rb +27 -0
- data/lib/who_am_i/function/resolve_active_record.rb +40 -0
- data/lib/who_am_i/function/resolve_class_relationships.rb +63 -0
- data/lib/who_am_i/function/resolve_tables.rb +25 -0
- data/lib/who_am_i/function/write_model.rb +16 -0
- data/lib/who_am_i/rake.rb +12 -0
- data/lib/who_am_i/refinement/yield_self.rb +17 -0
- data/lib/who_am_i/table_column_info.rb +50 -0
- data/lib/who_am_i/table_info.rb +31 -0
- data/lib/who_am_i/text_table.rb +49 -0
- data/lib/who_am_i/version.rb +3 -0
- data/lib/who_am_i/walker.rb +113 -0
- data/lib/who_am_i.rb +29 -0
- data/who_am_i.gemspec +37 -0
- metadata +285 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2253bede51a5e4fa72f405ab2ff5f688623e28e3
|
4
|
+
data.tar.gz: d75e93a1227f87b1be4cdff7b3a08854a62d4d90
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ad5bae82858ef5f415ca30934b87807358ed8c3dd16d10d1c03b1809a1fd3922f9a0232549b3e26e7bdb6cca8f8dd5de44514df98910debb12b75ea9d1f07c75
|
7
|
+
data.tar.gz: f287bae2249961e3db22ceb871120a5f8bb475de5b20c84ebffe0c98094da4a3628270123413d58acce02b0c28e45cdc652f12e1afc4c84f10a98d52bb0b9d83
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.3.3
|
data/.travis.yml
ADDED
data/Appraisals
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
appraise "rails32" do
|
2
|
+
gem "activerecord", "= 3.2.22"
|
3
|
+
gem "minitest", "~> 5.10"
|
4
|
+
end
|
5
|
+
|
6
|
+
appraise "rails40" do
|
7
|
+
gem "activerecord", "= 4.0.13"
|
8
|
+
gem "minitest", "~> 4.7"
|
9
|
+
end
|
10
|
+
|
11
|
+
appraise "rails41" do
|
12
|
+
gem "activerecord", "= 4.1.16"
|
13
|
+
gem "minitest", "~> 5.10"
|
14
|
+
end
|
15
|
+
|
16
|
+
appraise "rails42" do
|
17
|
+
gem "activerecord", "= 4.2.9"
|
18
|
+
gem "minitest", "~> 5.10"
|
19
|
+
end
|
20
|
+
|
21
|
+
appraise "rails50" do
|
22
|
+
gem "activerecord", "= 5.0.4"
|
23
|
+
gem "minitest", "~> 5.10"
|
24
|
+
end
|
25
|
+
|
26
|
+
appraise "rails51" do
|
27
|
+
gem "activerecord", "= 5.1.2"
|
28
|
+
gem "minitest", "~> 5.10"
|
29
|
+
end
|
30
|
+
|
31
|
+
# vim: syntax=ruby
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Zach Ahn
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# WhoAmI
|
2
|
+
|
3
|
+
> Who am I? — <cite>Hansel</cite>
|
4
|
+
|
5
|
+
> Who am I? — <cite>Katy Perry</cite>
|
6
|
+
|
7
|
+
> Who am I? — <cite>Neil deGrasse Tyson</cite>
|
8
|
+
|
9
|
+
> Who am I? — <cite>Zoolander</cite>
|
10
|
+
|
11
|
+
WhoAmI comments at the top of your model file with a list of the table's
|
12
|
+
columns.
|
13
|
+
|
14
|
+
Please remember to use version control before using WhoAmI. I've definitely
|
15
|
+
written a few bugs in my lifetime.
|
16
|
+
|
17
|
+
|
18
|
+
## Installation
|
19
|
+
|
20
|
+
Add this line to your application's Gemfile:
|
21
|
+
|
22
|
+
```ruby
|
23
|
+
group :development do
|
24
|
+
gem "who_am_i", require: false
|
25
|
+
end
|
26
|
+
```
|
27
|
+
|
28
|
+
And then execute:
|
29
|
+
|
30
|
+
$ bundle
|
31
|
+
|
32
|
+
In your `Rakefile`, require `who_am_i/rake`.
|
33
|
+
|
34
|
+
|
35
|
+
## Usage
|
36
|
+
|
37
|
+
Run `rake who_am_i` to update your model files.
|
38
|
+
|
39
|
+
|
40
|
+
## Development
|
41
|
+
|
42
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
43
|
+
`rake test` to run the tests. You can also run `bin/console` for an interactive
|
44
|
+
prompt that will allow you to experiment.
|
45
|
+
|
46
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
47
|
+
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
Bug reports and pull requests are welcome on GitHub at
|
52
|
+
[https://github.com/zachahn/who_am_i](https://github.com/zachahn/who_am_i).
|
53
|
+
|
54
|
+
|
55
|
+
## License
|
56
|
+
|
57
|
+
The gem is available as open source under the terms of the
|
58
|
+
[MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/appraisal
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'appraisal' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
require "rubygems"
|
16
|
+
require "bundler/setup"
|
17
|
+
|
18
|
+
load Gem.bin_path("appraisal", "appraisal")
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "who_am_i"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/m
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'm' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
require "rubygems"
|
16
|
+
require "bundler/setup"
|
17
|
+
|
18
|
+
load Gem.bin_path("m", "m")
|
data/bin/rake
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rake' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
require "rubygems"
|
16
|
+
require "bundler/setup"
|
17
|
+
|
18
|
+
load Gem.bin_path("rake", "rake")
|
data/bin/rubocop
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rubocop' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
require "rubygems"
|
16
|
+
require "bundler/setup"
|
17
|
+
|
18
|
+
load Gem.bin_path("rubocop", "rubocop")
|
data/bin/setup
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
who_am_i (0.0.0)
|
5
|
+
activerecord (>= 3.2, < 5.2)
|
6
|
+
parser
|
7
|
+
proc_party
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (3.2.22)
|
13
|
+
activesupport (= 3.2.22)
|
14
|
+
builder (~> 3.0.0)
|
15
|
+
activerecord (3.2.22)
|
16
|
+
activemodel (= 3.2.22)
|
17
|
+
activesupport (= 3.2.22)
|
18
|
+
arel (~> 3.0.2)
|
19
|
+
tzinfo (~> 0.3.29)
|
20
|
+
activesupport (3.2.22)
|
21
|
+
i18n (~> 0.6, >= 0.6.4)
|
22
|
+
multi_json (~> 1.0)
|
23
|
+
appraisal (2.2.0)
|
24
|
+
bundler
|
25
|
+
rake
|
26
|
+
thor (>= 0.14.0)
|
27
|
+
arel (3.0.3)
|
28
|
+
ast (2.3.0)
|
29
|
+
builder (3.0.4)
|
30
|
+
byebug (9.0.6)
|
31
|
+
coderay (1.1.1)
|
32
|
+
foreigner (1.7.4)
|
33
|
+
activerecord (>= 3.0.0)
|
34
|
+
i18n (0.8.6)
|
35
|
+
m (1.5.1)
|
36
|
+
method_source (>= 0.6.7)
|
37
|
+
rake (>= 0.9.2.2)
|
38
|
+
method_source (0.8.2)
|
39
|
+
minitest (5.10.2)
|
40
|
+
multi_json (1.12.1)
|
41
|
+
parallel (1.11.2)
|
42
|
+
parser (2.4.0.0)
|
43
|
+
ast (~> 2.2)
|
44
|
+
powerpack (0.1.1)
|
45
|
+
proc_party (0.2.0)
|
46
|
+
pry (0.10.4)
|
47
|
+
coderay (~> 1.1.0)
|
48
|
+
method_source (~> 0.8.1)
|
49
|
+
slop (~> 3.4)
|
50
|
+
pry-byebug (3.4.2)
|
51
|
+
byebug (~> 9.0)
|
52
|
+
pry (~> 0.10)
|
53
|
+
rainbow (2.2.2)
|
54
|
+
rake
|
55
|
+
rake (10.5.0)
|
56
|
+
rubocop (0.49.1)
|
57
|
+
parallel (~> 1.10)
|
58
|
+
parser (>= 2.3.3.1, < 3.0)
|
59
|
+
powerpack (~> 0.1)
|
60
|
+
rainbow (>= 1.99.1, < 3.0)
|
61
|
+
ruby-progressbar (~> 1.7)
|
62
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
63
|
+
ruby-progressbar (1.8.1)
|
64
|
+
slop (3.6.0)
|
65
|
+
sqlite3 (1.3.13)
|
66
|
+
the_bath_of_zahn (0.0.2)
|
67
|
+
thor (0.19.4)
|
68
|
+
tzinfo (0.3.53)
|
69
|
+
unicode-display_width (1.3.0)
|
70
|
+
|
71
|
+
PLATFORMS
|
72
|
+
ruby
|
73
|
+
|
74
|
+
DEPENDENCIES
|
75
|
+
activerecord (= 3.2.22)
|
76
|
+
appraisal
|
77
|
+
bundler (~> 1.15)
|
78
|
+
foreigner
|
79
|
+
m (~> 1.5)
|
80
|
+
minitest (~> 5.10)
|
81
|
+
pry-byebug
|
82
|
+
rake (~> 10.0)
|
83
|
+
rubocop
|
84
|
+
sqlite3
|
85
|
+
the_bath_of_zahn
|
86
|
+
who_am_i!
|
87
|
+
|
88
|
+
BUNDLED WITH
|
89
|
+
1.15.4
|
@@ -0,0 +1,94 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
who_am_i (0.0.0)
|
5
|
+
activerecord (>= 3.2, < 5.2)
|
6
|
+
parser
|
7
|
+
proc_party
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (4.0.13)
|
13
|
+
activesupport (= 4.0.13)
|
14
|
+
builder (~> 3.1.0)
|
15
|
+
activerecord (4.0.13)
|
16
|
+
activemodel (= 4.0.13)
|
17
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
18
|
+
activesupport (= 4.0.13)
|
19
|
+
arel (~> 4.0.0)
|
20
|
+
activerecord-deprecated_finders (1.0.4)
|
21
|
+
activesupport (4.0.13)
|
22
|
+
i18n (~> 0.6, >= 0.6.9)
|
23
|
+
minitest (~> 4.2)
|
24
|
+
multi_json (~> 1.3)
|
25
|
+
thread_safe (~> 0.1)
|
26
|
+
tzinfo (~> 0.3.37)
|
27
|
+
appraisal (2.2.0)
|
28
|
+
bundler
|
29
|
+
rake
|
30
|
+
thor (>= 0.14.0)
|
31
|
+
arel (4.0.2)
|
32
|
+
ast (2.3.0)
|
33
|
+
builder (3.1.4)
|
34
|
+
byebug (9.0.6)
|
35
|
+
coderay (1.1.1)
|
36
|
+
foreigner (1.7.4)
|
37
|
+
activerecord (>= 3.0.0)
|
38
|
+
i18n (0.8.6)
|
39
|
+
m (1.5.1)
|
40
|
+
method_source (>= 0.6.7)
|
41
|
+
rake (>= 0.9.2.2)
|
42
|
+
method_source (0.8.2)
|
43
|
+
minitest (4.7.5)
|
44
|
+
multi_json (1.12.1)
|
45
|
+
parallel (1.11.2)
|
46
|
+
parser (2.4.0.0)
|
47
|
+
ast (~> 2.2)
|
48
|
+
powerpack (0.1.1)
|
49
|
+
proc_party (0.2.0)
|
50
|
+
pry (0.10.4)
|
51
|
+
coderay (~> 1.1.0)
|
52
|
+
method_source (~> 0.8.1)
|
53
|
+
slop (~> 3.4)
|
54
|
+
pry-byebug (3.4.2)
|
55
|
+
byebug (~> 9.0)
|
56
|
+
pry (~> 0.10)
|
57
|
+
rainbow (2.2.2)
|
58
|
+
rake
|
59
|
+
rake (10.5.0)
|
60
|
+
rubocop (0.49.1)
|
61
|
+
parallel (~> 1.10)
|
62
|
+
parser (>= 2.3.3.1, < 3.0)
|
63
|
+
powerpack (~> 0.1)
|
64
|
+
rainbow (>= 1.99.1, < 3.0)
|
65
|
+
ruby-progressbar (~> 1.7)
|
66
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
67
|
+
ruby-progressbar (1.8.1)
|
68
|
+
slop (3.6.0)
|
69
|
+
sqlite3 (1.3.13)
|
70
|
+
the_bath_of_zahn (0.0.2)
|
71
|
+
thor (0.19.4)
|
72
|
+
thread_safe (0.3.6)
|
73
|
+
tzinfo (0.3.53)
|
74
|
+
unicode-display_width (1.3.0)
|
75
|
+
|
76
|
+
PLATFORMS
|
77
|
+
ruby
|
78
|
+
|
79
|
+
DEPENDENCIES
|
80
|
+
activerecord (= 4.0.13)
|
81
|
+
appraisal
|
82
|
+
bundler (~> 1.15)
|
83
|
+
foreigner
|
84
|
+
m (~> 1.5)
|
85
|
+
minitest (~> 4.7)
|
86
|
+
pry-byebug
|
87
|
+
rake (~> 10.0)
|
88
|
+
rubocop
|
89
|
+
sqlite3
|
90
|
+
the_bath_of_zahn
|
91
|
+
who_am_i!
|
92
|
+
|
93
|
+
BUNDLED WITH
|
94
|
+
1.15.4
|
@@ -0,0 +1,93 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
who_am_i (0.0.0)
|
5
|
+
activerecord (>= 3.2, < 5.2)
|
6
|
+
parser
|
7
|
+
proc_party
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (4.1.16)
|
13
|
+
activesupport (= 4.1.16)
|
14
|
+
builder (~> 3.1)
|
15
|
+
activerecord (4.1.16)
|
16
|
+
activemodel (= 4.1.16)
|
17
|
+
activesupport (= 4.1.16)
|
18
|
+
arel (~> 5.0.0)
|
19
|
+
activesupport (4.1.16)
|
20
|
+
i18n (~> 0.6, >= 0.6.9)
|
21
|
+
json (~> 1.7, >= 1.7.7)
|
22
|
+
minitest (~> 5.1)
|
23
|
+
thread_safe (~> 0.1)
|
24
|
+
tzinfo (~> 1.1)
|
25
|
+
appraisal (2.2.0)
|
26
|
+
bundler
|
27
|
+
rake
|
28
|
+
thor (>= 0.14.0)
|
29
|
+
arel (5.0.1.20140414130214)
|
30
|
+
ast (2.3.0)
|
31
|
+
builder (3.2.3)
|
32
|
+
byebug (9.0.6)
|
33
|
+
coderay (1.1.1)
|
34
|
+
foreigner (1.7.4)
|
35
|
+
activerecord (>= 3.0.0)
|
36
|
+
i18n (0.8.6)
|
37
|
+
json (1.8.6)
|
38
|
+
m (1.5.1)
|
39
|
+
method_source (>= 0.6.7)
|
40
|
+
rake (>= 0.9.2.2)
|
41
|
+
method_source (0.8.2)
|
42
|
+
minitest (5.10.2)
|
43
|
+
parallel (1.11.2)
|
44
|
+
parser (2.4.0.0)
|
45
|
+
ast (~> 2.2)
|
46
|
+
powerpack (0.1.1)
|
47
|
+
proc_party (0.2.0)
|
48
|
+
pry (0.10.4)
|
49
|
+
coderay (~> 1.1.0)
|
50
|
+
method_source (~> 0.8.1)
|
51
|
+
slop (~> 3.4)
|
52
|
+
pry-byebug (3.4.2)
|
53
|
+
byebug (~> 9.0)
|
54
|
+
pry (~> 0.10)
|
55
|
+
rainbow (2.2.2)
|
56
|
+
rake
|
57
|
+
rake (10.5.0)
|
58
|
+
rubocop (0.49.1)
|
59
|
+
parallel (~> 1.10)
|
60
|
+
parser (>= 2.3.3.1, < 3.0)
|
61
|
+
powerpack (~> 0.1)
|
62
|
+
rainbow (>= 1.99.1, < 3.0)
|
63
|
+
ruby-progressbar (~> 1.7)
|
64
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
65
|
+
ruby-progressbar (1.8.1)
|
66
|
+
slop (3.6.0)
|
67
|
+
sqlite3 (1.3.13)
|
68
|
+
the_bath_of_zahn (0.0.2)
|
69
|
+
thor (0.19.4)
|
70
|
+
thread_safe (0.3.6)
|
71
|
+
tzinfo (1.2.3)
|
72
|
+
thread_safe (~> 0.1)
|
73
|
+
unicode-display_width (1.3.0)
|
74
|
+
|
75
|
+
PLATFORMS
|
76
|
+
ruby
|
77
|
+
|
78
|
+
DEPENDENCIES
|
79
|
+
activerecord (= 4.1.16)
|
80
|
+
appraisal
|
81
|
+
bundler (~> 1.15)
|
82
|
+
foreigner
|
83
|
+
m (~> 1.5)
|
84
|
+
minitest (~> 5.10)
|
85
|
+
pry-byebug
|
86
|
+
rake (~> 10.0)
|
87
|
+
rubocop
|
88
|
+
sqlite3
|
89
|
+
the_bath_of_zahn
|
90
|
+
who_am_i!
|
91
|
+
|
92
|
+
BUNDLED WITH
|
93
|
+
1.15.4
|
@@ -0,0 +1,91 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
who_am_i (0.0.0)
|
5
|
+
activerecord (>= 3.2, < 5.2)
|
6
|
+
parser
|
7
|
+
proc_party
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (4.2.9)
|
13
|
+
activesupport (= 4.2.9)
|
14
|
+
builder (~> 3.1)
|
15
|
+
activerecord (4.2.9)
|
16
|
+
activemodel (= 4.2.9)
|
17
|
+
activesupport (= 4.2.9)
|
18
|
+
arel (~> 6.0)
|
19
|
+
activesupport (4.2.9)
|
20
|
+
i18n (~> 0.7)
|
21
|
+
minitest (~> 5.1)
|
22
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
23
|
+
tzinfo (~> 1.1)
|
24
|
+
appraisal (2.2.0)
|
25
|
+
bundler
|
26
|
+
rake
|
27
|
+
thor (>= 0.14.0)
|
28
|
+
arel (6.0.4)
|
29
|
+
ast (2.3.0)
|
30
|
+
builder (3.2.3)
|
31
|
+
byebug (9.0.6)
|
32
|
+
coderay (1.1.1)
|
33
|
+
foreigner (1.7.4)
|
34
|
+
activerecord (>= 3.0.0)
|
35
|
+
i18n (0.8.6)
|
36
|
+
m (1.5.1)
|
37
|
+
method_source (>= 0.6.7)
|
38
|
+
rake (>= 0.9.2.2)
|
39
|
+
method_source (0.8.2)
|
40
|
+
minitest (5.10.2)
|
41
|
+
parallel (1.11.2)
|
42
|
+
parser (2.4.0.0)
|
43
|
+
ast (~> 2.2)
|
44
|
+
powerpack (0.1.1)
|
45
|
+
proc_party (0.2.0)
|
46
|
+
pry (0.10.4)
|
47
|
+
coderay (~> 1.1.0)
|
48
|
+
method_source (~> 0.8.1)
|
49
|
+
slop (~> 3.4)
|
50
|
+
pry-byebug (3.4.2)
|
51
|
+
byebug (~> 9.0)
|
52
|
+
pry (~> 0.10)
|
53
|
+
rainbow (2.2.2)
|
54
|
+
rake
|
55
|
+
rake (10.5.0)
|
56
|
+
rubocop (0.49.1)
|
57
|
+
parallel (~> 1.10)
|
58
|
+
parser (>= 2.3.3.1, < 3.0)
|
59
|
+
powerpack (~> 0.1)
|
60
|
+
rainbow (>= 1.99.1, < 3.0)
|
61
|
+
ruby-progressbar (~> 1.7)
|
62
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
63
|
+
ruby-progressbar (1.8.1)
|
64
|
+
slop (3.6.0)
|
65
|
+
sqlite3 (1.3.13)
|
66
|
+
the_bath_of_zahn (0.0.2)
|
67
|
+
thor (0.19.4)
|
68
|
+
thread_safe (0.3.6)
|
69
|
+
tzinfo (1.2.3)
|
70
|
+
thread_safe (~> 0.1)
|
71
|
+
unicode-display_width (1.3.0)
|
72
|
+
|
73
|
+
PLATFORMS
|
74
|
+
ruby
|
75
|
+
|
76
|
+
DEPENDENCIES
|
77
|
+
activerecord (= 4.2.9)
|
78
|
+
appraisal
|
79
|
+
bundler (~> 1.15)
|
80
|
+
foreigner
|
81
|
+
m (~> 1.5)
|
82
|
+
minitest (~> 5.10)
|
83
|
+
pry-byebug
|
84
|
+
rake (~> 10.0)
|
85
|
+
rubocop
|
86
|
+
sqlite3
|
87
|
+
the_bath_of_zahn
|
88
|
+
who_am_i!
|
89
|
+
|
90
|
+
BUNDLED WITH
|
91
|
+
1.15.4
|