awesome_print 1.6.1 → 1.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +4 -0
  3. data/Appraisals +45 -22
  4. data/{CHANGELOG → CHANGELOG.md} +83 -18
  5. data/CONTRIBUTING.md +45 -4
  6. data/Gemfile.lock +28 -22
  7. data/LICENSE +16 -19
  8. data/README.md +97 -92
  9. data/Rakefile +5 -5
  10. data/awesome_print.gemspec +33 -0
  11. data/init.rb +1 -0
  12. data/lib/ap.rb +2 -2
  13. data/lib/awesome_print/colorize.rb +24 -0
  14. data/lib/awesome_print/core_ext/{array.rb → awesome_method_array.rb} +16 -18
  15. data/lib/awesome_print/core_ext/class.rb +3 -2
  16. data/lib/awesome_print/core_ext/kernel.rb +1 -1
  17. data/lib/awesome_print/core_ext/logger.rb +1 -1
  18. data/lib/awesome_print/core_ext/method.rb +2 -2
  19. data/lib/awesome_print/core_ext/object.rb +3 -2
  20. data/lib/awesome_print/core_ext/string.rb +3 -3
  21. data/lib/awesome_print/custom_defaults.rb +57 -0
  22. data/lib/awesome_print/ext/action_view.rb +8 -4
  23. data/lib/awesome_print/ext/active_record.rb +45 -12
  24. data/lib/awesome_print/ext/active_support.rb +1 -1
  25. data/lib/awesome_print/ext/mongo_mapper.rb +16 -13
  26. data/lib/awesome_print/ext/mongoid.rb +8 -6
  27. data/lib/awesome_print/ext/nobrainer.rb +52 -0
  28. data/lib/awesome_print/ext/nokogiri.rb +4 -4
  29. data/lib/awesome_print/ext/ostruct.rb +1 -1
  30. data/lib/awesome_print/ext/ripple.rb +5 -6
  31. data/lib/awesome_print/ext/sequel.rb +7 -6
  32. data/lib/awesome_print/formatter.rb +54 -327
  33. data/lib/awesome_print/formatters/array_formatter.rb +139 -0
  34. data/lib/awesome_print/formatters/base_formatter.rb +140 -0
  35. data/lib/awesome_print/formatters/class_formatter.rb +25 -0
  36. data/lib/awesome_print/formatters/dir_formatter.rb +22 -0
  37. data/lib/awesome_print/formatters/file_formatter.rb +22 -0
  38. data/lib/awesome_print/formatters/hash_formatter.rb +106 -0
  39. data/lib/awesome_print/formatters/method_formatter.rb +22 -0
  40. data/lib/awesome_print/formatters/object_formatter.rb +78 -0
  41. data/lib/awesome_print/formatters/simple_formatter.rb +21 -0
  42. data/lib/awesome_print/formatters/struct_formatter.rb +71 -0
  43. data/lib/awesome_print/formatters.rb +15 -0
  44. data/lib/awesome_print/indentator.rb +18 -0
  45. data/lib/awesome_print/inspector.rb +92 -94
  46. data/lib/awesome_print/version.rb +2 -2
  47. data/lib/awesome_print.rb +19 -18
  48. data/spec/active_record_helper.rb +24 -28
  49. data/spec/colors_spec.rb +31 -31
  50. data/spec/core_ext/logger_spec.rb +43 -0
  51. data/spec/core_ext/string_spec.rb +20 -0
  52. data/spec/ext/action_view_spec.rb +21 -0
  53. data/spec/ext/active_record_spec.rb +260 -0
  54. data/spec/ext/active_support_spec.rb +30 -0
  55. data/spec/ext/mongo_mapper_spec.rb +261 -0
  56. data/spec/ext/mongoid_spec.rb +67 -0
  57. data/spec/ext/nobrainer_spec.rb +59 -0
  58. data/spec/ext/nokogiri_spec.rb +46 -0
  59. data/spec/ext/ostruct_spec.rb +22 -0
  60. data/spec/ext/ripple_spec.rb +48 -0
  61. data/spec/formats_spec.rb +251 -184
  62. data/spec/methods_spec.rb +126 -130
  63. data/spec/misc_spec.rb +98 -93
  64. data/spec/objects_spec.rb +162 -27
  65. data/spec/spec_helper.rb +72 -38
  66. data/spec/support/active_record_data/3_2_diana.txt +24 -0
  67. data/spec/support/active_record_data/3_2_diana_legacy.txt +24 -0
  68. data/spec/support/active_record_data/3_2_multi.txt +50 -0
  69. data/spec/support/active_record_data/3_2_multi_legacy.txt +50 -0
  70. data/spec/support/active_record_data/4_0_diana.txt +98 -0
  71. data/spec/support/active_record_data/4_0_multi.txt +198 -0
  72. data/spec/support/active_record_data/4_1_diana.txt +97 -0
  73. data/spec/support/active_record_data/4_1_multi.txt +196 -0
  74. data/spec/support/active_record_data/4_2_diana.txt +109 -0
  75. data/spec/support/active_record_data/4_2_diana_legacy.txt +109 -0
  76. data/spec/support/active_record_data/4_2_multi.txt +220 -0
  77. data/spec/support/active_record_data/4_2_multi_legacy.txt +220 -0
  78. data/spec/support/active_record_data/5_0_diana.txt +105 -0
  79. data/spec/support/active_record_data/5_0_multi.txt +212 -0
  80. data/spec/support/active_record_data/5_1_diana.txt +104 -0
  81. data/spec/support/active_record_data/5_1_multi.txt +210 -0
  82. data/spec/support/active_record_data/5_2_diana.txt +104 -0
  83. data/spec/support/active_record_data/5_2_multi.txt +210 -0
  84. data/spec/support/active_record_data/6_0_diana.txt +104 -0
  85. data/spec/support/active_record_data/6_0_multi.txt +210 -0
  86. data/spec/support/active_record_data/6_1_diana.txt +109 -0
  87. data/spec/support/active_record_data/6_1_multi.txt +220 -0
  88. data/spec/support/active_record_data.rb +20 -0
  89. data/spec/support/ext_verifier.rb +42 -0
  90. data/spec/support/mongoid_versions.rb +26 -0
  91. data/spec/support/rails_versions.rb +55 -0
  92. metadata +104 -15
  93. data/lib/awesome_print/ext/no_brainer.rb +0 -58
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fb92d5e2cf0fdfb4adea4dce07a036029b215e53
4
- data.tar.gz: 5ff2f87c655f96bdbf5393d18432dd967f3c48ef
2
+ SHA256:
3
+ metadata.gz: bc6d20d854c529b902cfe961bd8271b30f1aa9f82c4db11bfdcaa6ecb6b1f469
4
+ data.tar.gz: c4f69e0cf2663cb4889b27414bd9f242789fea28790c3252dc5b2788da70bca2
5
5
  SHA512:
6
- metadata.gz: e41bf9d0871110552cd501c718276cf610c14dad19732a75670d81b9028c84fe21af86405bca36a3b5d3f35ef1180bb6d3ae0871b26d8bd313091b8298a4a147
7
- data.tar.gz: 7980fa638d522e0be24381a8edca2c480f1a3579b4c310bbee2c2228c41c4b9c1a738e23251381e52b8e2744d860e7ab35dcef654af37a003e2366a8a67c3b75
6
+ metadata.gz: c34cd0b7347ecf6e98afc4ef0647f940a02a5d125c955748917c821e6bbf231830604fcbe0fb524c6bfdaa049d6f945bad658d30433bf878841b30a6d79ad765
7
+ data.tar.gz: 9cfae5c9646b5194a52c87b1ea38ba3d711cb616a713e66ce0ab83f255293a4b75f4016f349f047aa43d775d14b9f024fc0edccdf40b9f489e46626908162b00
data/.gitignore CHANGED
@@ -23,6 +23,10 @@ pkg
23
23
  .ruby-version
24
24
  gemfiles/*.gemfile.lock
25
25
  Gemfile.lock
26
+ /tmp
27
+ /.bundle
28
+ /gemfiles/.bundle
29
+ /gemfiles/vendor/bundle
26
30
 
27
31
  ## PROJECT::RVM
28
32
  .rvmrc
data/Appraisals CHANGED
@@ -1,39 +1,62 @@
1
- appraise 'rails-3.2' do
2
- gem 'rails', '~> 3.2.0'
1
+ # appraise 'rails-4.2' do
2
+ # gem 'rails', '~> 4.2.0'
3
+ #
4
+ # # The last version that doesn't need Ruby 2.0 and works with version 4.2 of
5
+ # # Rails. This addresses a build problem with Travis for version 1.9.3 of Ruby
6
+ # gem 'mime-types', '2.6.2', :platforms => :ruby_19
7
+ # end
8
+
9
+ appraise 'rails-5.0' do
10
+ gem 'rails', '>= 5.0.0', '< 5.1'
11
+ gem 'sqlite3', '~> 1.3.6'
3
12
  end
4
13
 
5
- appraise 'rails-4.0' do
6
- gem 'rails', '~> 4.0.0'
14
+ appraise 'rails-5.1' do
15
+ gem 'rails', '>= 5.1.0', '< 5.2'
7
16
  end
8
17
 
9
- appraise 'rails-4.1' do
10
- gem 'rails', '~> 4.1.0'
18
+ appraise 'rails-5.2' do
19
+ gem 'rails', '>= 5.2.0', '< 5.3'
11
20
  end
12
21
 
13
- appraise 'rails-4.2' do
14
- gem 'rails', '~> 4.2.0'
22
+ appraise 'rails-6.0' do
23
+ gem 'rails', '>= 6.0.0', '< 6.1'
15
24
  end
16
25
 
17
- appraise 'mongoid-3.0' do
18
- gem 'rails', '~> 3.2.0'
19
- gem 'mongoid', '~> 3.0.0'
26
+ appraise 'rails-6.1' do
27
+ gem 'rails', '>= 6.1.0', '< 6.2'
20
28
  end
21
29
 
22
- appraise 'mongoid-3.1' do
23
- gem 'rails', '~> 3.2.0'
24
- gem 'mongoid', '~> 3.1.0'
30
+ appraise 'mongoid-5.0' do
31
+ gem 'mongoid', '~> 5.0.0'
32
+ gem 'bigdecimal', '~> 1.3.5'
25
33
  end
26
34
 
27
- appraise 'mongoid-4.0' do
28
- gem 'rails', '~> 4.2.0'
29
- gem 'mongoid', '~> 4.0.0'
35
+ appraise 'mongoid-6.0' do
36
+ gem 'mongoid', '~> 6.0.0'
30
37
  end
31
38
 
32
- appraise 'mongo_mapper' do
33
- gem 'mongo_mapper'
39
+ appraise 'mongoid-7.0' do
40
+ gem 'mongoid', '~> 7.0.0'
34
41
  end
35
42
 
36
- appraise 'ripple' do
37
- gem 'tzinfo'
38
- gem 'ripple'
43
+ appraise 'mongoid-7.1' do
44
+ gem 'mongoid', '~> 7.1.0'
39
45
  end
46
+
47
+ # appraise 'mongo_mapper' do
48
+ # gem 'mongo_mapper'
49
+ # end
50
+ #
51
+ # appraise 'ripple' do
52
+ # gem 'tzinfo'
53
+ # gem 'ripple'
54
+ # end
55
+ #
56
+ # appraise 'nobrainer' do
57
+ # gem 'nobrainer'
58
+ #
59
+ # # When activesupport 5 was released, it required ruby 2.2.2 as a minimum.
60
+ # # Locking this down to 4.2.6 allows our Ruby 1.9 tests to keep working.
61
+ # gem 'activesupport', '4.2.6', :platforms => :ruby_19
62
+ # end
@@ -1,11 +1,50 @@
1
- 1.6.1
1
+ ## master (unreleased)
2
+
3
+
4
+ ## 1.9.2
5
+ - Tests work with Ruby 2.6.6, 2.7.2 and 3.0.0
6
+ - Update awsome_print.gemspec nokogiri dependency to resolve CVEs [@gvwirth]
7
+
8
+ ## 1.9.1
9
+ - Updated code so it can be released to rubygems.
10
+ - Updated nokogiri to resolve vulnerability scan
11
+
12
+ ## 1.9.0
13
+ - Update method signature after change in IRB [@febeling]
14
+ - Fixes block and proc definition to work with Ruby 3.0.0 [@csalvato] - [#392]
15
+ - Removed check for Ruby 2.4 and earlier [@bryanh]
16
+ - Rails 5.0 builds are failing, because the sqlite3 version being installed is wrong version [#366]
17
+ - Fixes spec suite to properly work via travis, gets a clean build [@imajes, others]
18
+ - Adds support for ActiveModel::Errors [@dshinzie] - [#301]
19
+ - removes use of `strip_heredoc` from specs as it's a rails dep [@kstephens] - [#303]
20
+ - ArrayFormatter now returns arrays for has_many :through associations [@chadh13] - [#332]
21
+
22
+ ## 1.8.0
23
+ - stat("$HOME/.aprc") once [@kstephens] - [#304]
24
+ - ActiveRecord: #joins now show the columns #select'ed [@adrianomitre] - [#211]
25
+ - Handles NoMethodError for IRB implicit `ai` [@jtnegrotto] - [#212]
26
+ - Replaced Fixnum reference with Integer
27
+ - Colorize ORM class names [@ixti]
28
+
29
+ ## 1.7.0
30
+ - Refactoring by extracting formatters into their own classes [@waldyr] - [#237]
31
+ - Fixes Travis builds and improves tests [@nviennot], [@waldyr], [@gerrywastaken] - [#225], [#228], [#229], [#230], [#231]
32
+ - Creates `awesome_object_data` to encapsulate the logic of printing object internals,
33
+ so Structs and Objects can be printed as one [@waldyr] - [#226]
34
+ - Fixes development dependencies for environments without rake [@aleandros], [@cyberdelia] - [#222], [#216]
35
+ - Documents `ai` method usage [@MaxPleaner] - [#217]
36
+ - Fixes conflict with `mail` and other gems which fake ActiveSupport [@kemmason] - [#200]
37
+ - Improves spec performance and simplicity [@maurogeorge]
38
+ - Handle objects that have a custom #to_hash method [@clonezone]
39
+
40
+ ## 1.6.1
2
41
  - Fixes specs on all rails dependencies (Mauro George)
3
42
  - Updates specs for mongoid, mongo_mapper and ripple (James Cox)
4
43
  - Adds appraisals for simpler version/scenario management (Mauro George)
5
44
  - Add Travis (Mauro George)
6
45
  - Update documentation (Mauro George)
7
46
 
8
- 1.6.0
47
+ ## 1.6.0
9
48
  semi-major release since it's been a while, and there are several
10
49
  improvements.
11
50
  - Improves support for new mongoid/moped (Velkitor, Francois Bernier et al)
@@ -17,7 +56,8 @@
17
56
  - Fixes inspection of abstract classes (Jonathan Priddle)
18
57
  - Gets most specs passing, and fixes suite (Eoin Kelly)
19
58
 
20
- 1.2.0 <-- NOTE: This is the *last* release supporting Ruby < v1.9.3 and Rails < v3.
59
+ ## 1.2.0
60
+ #### NOTE: This is the *last* release supporting Ruby < v1.9.3 and Rails < v3.
21
61
  - Added Sequel ORM plugin (Jonathan Davies)
22
62
  - Added Ripple plugin (Ruby modeling layer for Riak, Scott Hyndman)
23
63
  - Added NoBrainer plugin (Ruby ORM for RethinkDB, Nicolas Viennot)
@@ -25,7 +65,7 @@
25
65
  - Fixed HTML formatting (Mike McQuaid)
26
66
  - Other minor bugs and enhancements
27
67
 
28
- 1.1.0
68
+ ## 1.1.0
29
69
  - Objects are no longer recursively formatted by default. Reenable by using :raw => true option.
30
70
  - ap(object) now returns nil when running under IRB or Pry
31
71
  - Added support for Mongoid 3 and Moped (Nikolaj Nikolajsen)
@@ -36,17 +76,17 @@
36
76
  - Fixed conflict with the colorize gem
37
77
  - Misc tweaks and bug fixes
38
78
 
39
- 1.0.2
79
+ ## 1.0.2
40
80
  - Added formatting of Mongoid documents (Adam Doppelt)
41
81
  - ActiveRecord objects display attributes only. Use :raw => true to display the entire object
42
82
  - ActiveSupport::Date objects get formatted as regular Date
43
83
  - Rails.logger.ap colorizes output based on ActiveSupport::LogSubscriber.colorize_logging (default is true)
44
84
  - Improved formatting of methods array
45
85
 
46
- 1.0.1
86
+ ## 1.0.1
47
87
  - Updated repo tags for Rubygems.org
48
88
 
49
- 1.0.0 Thanksgiving edition
89
+ ## 1.0.0 Thanksgiving edition
50
90
  - Added ability to format *arbitrary* Ruby object
51
91
  - Added :limit option to limit large output for arrays and hashes (Andrew Horsman)
52
92
  - Improved HTML formatting when :html => true (Daniel Johnson)
@@ -54,7 +94,7 @@
54
94
  - Added Nokogiri extension (Adam Doppelt)
55
95
  - Removed Jeweler gem dependency
56
96
 
57
- 0.4.0
97
+ ## 0.4.0
58
98
  - 'ap object' now returns the object (Stephan Hagemann)
59
99
  - Added :html => true option to enable HTML colors rather that ANSI (ex. Sinatra templates)
60
100
  - Added AwesomePrint.force_colors! to allow color output on demand (Andrew O'Brien)
@@ -64,52 +104,77 @@
64
104
  - Improved Ruby 1.8.6 and 1.8.7 compatibility
65
105
  - Improved Windows compatibility (Viktar Basharymau)
66
106
 
67
- 0.3.2
107
+ ## 0.3.2
68
108
  - Make sure Rails mixins get loaded in Rails console when required from .irbrc
69
109
  - Fixed an issue with classes that define their own #send method (ex: Socket)
70
110
  - Fixed compatibility issue with Liquid gem that defines Module#liquid_methods
71
111
  - Fixed hash spec for Ruby < 1.9 where order of hash keys is not guaranteed
72
112
  - Added :sorted_hash_keys option to sort hash keys (Ed Ruder)
73
113
 
74
- 0.3.1 RubyConf X edition
114
+ ## 0.3.1 RubyConf X edition
75
115
  - Fixed Ruby 1.8.6 compatibility issues (thanks, Tim!)
76
116
  - Fixed stack overflow issue with Rails 2.3.x console
77
117
 
78
- 0.3.0
118
+ ## 0.3.0
79
119
  - Display object.methods and family in human readable format
80
120
  - Objects inherited from Array, Hash, File, Dir, and Struct are shown as their base class
81
121
  - Added option to suppress array index in output (Sean Gallagher)
82
122
  - Updated README on how to set up ~/.irbrc for MacRuby (Eloy Duran)
83
123
  - Specs pass 100% with Ruby 1.8.7/RSpec 1.3 and Ruby 1.9.2/RSpec 2.0
84
124
 
85
- 0.2.1
125
+ ## 0.2.1
86
126
  - ap can now be used within Rails templates (ex. <%= ap object %>)
87
127
  - Added support for printing Struct
88
128
 
89
- 0.2.0
129
+ ## 0.2.0
90
130
  - Added support for logger.ap (including Rails logger)
91
131
  - Added support for HashWithIndifferentAccess from ActiveSupport
92
132
  - ap now works with scripts that use ActiveRecord/ActiveSupport outside Rails
93
133
  - ap now correctly shows file and directory names with fancy characters (shell escape)
94
134
 
95
- 0.1.4
135
+ ## 0.1.4
96
136
  - Format BigDecimal and Rational objects as Float scalars
97
137
  - Explicit options parameter can override custom defaults
98
138
  - Custom defaults are not interfering when running specs
99
139
  - Custom defaults now work correctly with Ruby 1.9.x
100
140
 
101
- 0.1.3
141
+ ## 0.1.3
102
142
  - Added support for setting custom defaults in ~/.aprc
103
143
 
104
- 0.1.2
144
+ ## 0.1.2
105
145
  - Correctly handle empty arrays and hashes
106
146
  - Use alias_method instead of alias (fixes non-tty method aliasing)
107
147
  - Added awesome_inspect method
108
148
 
109
- 0.1.1
149
+ ## 0.1.1
110
150
  - Added support for tableless ActiveRecord models
111
151
  - Left align hash keys if @options[:indent] is negative
112
152
 
113
- 0.1.0
153
+ ## 0.1.0
114
154
  - Initial Release.
115
155
 
156
+ [#200]: https://github.com/awesome-print/awesome_print/pull/200
157
+ [#212]: https://github.com/awesome-print/awesome_print/pull/212
158
+ [#216]: https://github.com/awesome-print/awesome_print/pull/216
159
+ [#217]: https://github.com/awesome-print/awesome_print/pull/217
160
+ [#222]: https://github.com/awesome-print/awesome_print/pull/222
161
+ [#225]: https://github.com/awesome-print/awesome_print/pull/225
162
+ [#226]: https://github.com/awesome-print/awesome_print/pull/226
163
+ [#228]: https://github.com/awesome-print/awesome_print/pull/228
164
+ [#229]: https://github.com/awesome-print/awesome_print/pull/229
165
+ [#230]: https://github.com/awesome-print/awesome_print/pull/230
166
+ [#231]: https://github.com/awesome-print/awesome_print/pull/231
167
+ [#232]: https://github.com/awesome-print/awesome_print/pull/232
168
+ [#237]: https://github.com/awesome-print/awesome_print/pull/237
169
+
170
+ [@aleandros]: https://github.com/aleandros
171
+ [@clonezone]: https://github.com/clonezone
172
+ [@cyberdelia]: https://github.com/cyberdelia
173
+ [@gerrywastaken]: https://github.com/gerrywastaken
174
+ [@ixti]: https://github.com/ixti
175
+ [@jtnegrotto]: https://github.com/jtnegrotto
176
+ [@kemmason]: https://github.com/kemmason
177
+ [@maurogeorge]: https://github.com/maurogeorge
178
+ [@MaxPleaner]: https://github.com/MaxPleaner
179
+ [@nviennot]: https://github.com/nviennot
180
+ [@waldyr]: https://github.com/waldyr
data/CONTRIBUTING.md CHANGED
@@ -6,7 +6,9 @@ We love pull requests. Here's a quick guide:
6
6
 
7
7
  1. Create your feature branch (`git checkout -b my-new-feature`)
8
8
 
9
- 1. Update [CHANGELOG.md](https://github.com/michaeldv/awesome_print/blob/master/CHANGELOG.md) with a brief description of your changes under the `unreleased` heading.
9
+ 1. Update [CHANGELOG.md](https://github.com/awesome-print/awesome_print/blob/master/CHANGELOG.md) with a brief description of your changes under the `unreleased` heading.
10
+
11
+ 1. Add/Update tests were appropriate
10
12
 
11
13
  1. Commit your changes (`git commit -am 'Added some feature'`)
12
14
 
@@ -14,9 +16,7 @@ We love pull requests. Here's a quick guide:
14
16
 
15
17
  1. Create new Pull Request
16
18
 
17
- At this point you're waiting on us. We like to at least comment on, if not
18
- accept, pull requests within three business days (and, typically, one business
19
- day). We may suggest some changes or improvements or alternatives.
19
+ At this point you're waiting on us. We are not super fast at responding, but we will do our best to get to your PR as soon as time permits. We may suggest some changes, improvements or alternatives.
20
20
 
21
21
  Some things that will increase the chance that your pull request is accepted is to follow the practices described on [Ruby style guide](https://github.com/bbatsov/ruby-style-guide), [Rails style guide](https://github.com/bbatsov/rails-style-guide) and [Better Specs](http://betterspecs.org/).
22
22
 
@@ -39,3 +39,44 @@ If you want to run a specific spec in a gemfile run:
39
39
  ```
40
40
  $ appraisal rails-3.2 rspec spec/colors_spec.rb
41
41
  ```
42
+
43
+ ## Contributor Rolecall
44
+
45
+ Special thanks goes to awesome team of contributors, namely:
46
+
47
+ * 6fusion.com -- https://github.com/6fusion
48
+ * Adam Doppelt -- https://github.com/gurgeous
49
+ * Andrew O'Brien -- https://github.com/AndrewO
50
+ * Andrew Horsman -- https://github.com/basicxman
51
+ * Barry Allard -- https://github.com/steakknife
52
+ * Benoit Daloze -- http://github.com/eregon
53
+ * Brandon Zylstra -- https://github.com/brandondrew
54
+ * Bryan Hanks, PMP -- https://github.com/bryanh
55
+ * Dan Lynn -- https://github.com/danlynn
56
+ * Daniel Johnson -- https://github.com/adhd360
57
+ * Daniel Bretoi -- http://github.com/danielb2
58
+ * Eloy Duran -- http://github.com/alloy
59
+ * Elpizo Choi -- https://github.com/fuJiin
60
+ * Evan Senter -- https://github.com/evansenter
61
+ * George . -- https://github.com/gardelea
62
+ * Greg Weber -- https://github.com/gregwebs
63
+ * Jan Vansteenkiste -- https://github.com/vStone
64
+ * Jeff Felchner -- https://github.com/jfelchner
65
+ * Jonathan Davies -- send your Github URL ;-)
66
+ * Kevin Olbrich -- https://github.com/olbrich
67
+ * Matthew Schulkind -- https://github.com/mschulkind
68
+ * Mike McQuaid -- https://github.com/mikemcquaid
69
+ * Nami-Doc -- https://github.com/Nami-Doc
70
+ * Nicolas Viennot -- https://github.com/nviennot
71
+ * Nikolaj Nikolajsen -- https://github.com/nikolajsen
72
+ * Richard Hall -- https://github.com/richardardrichard
73
+ * Ryan Schlesinger -- https://github.com/ryansch
74
+ * Scott Hyndman -- https://github.com/shyndman
75
+ * Sean Gallagher -- http://github.com/torandu
76
+ * Stephan Hagemann -- https://github.com/shageman
77
+ * Tim Harper -- http://github.com/timcharper
78
+ * Tobias Crawley -- http://github.com/tobias
79
+ * Thibaut Barrère -- https://github.com/thbar
80
+ * Trevor Wennblom -- https://github.com/trevor
81
+ * vfrride -- https://github.com/vfrride
82
+ * Viktar Basharymau -- https://github.com/DNNX
data/Gemfile.lock CHANGED
@@ -1,35 +1,38 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- awesome_print (1.6.1)
4
+ awesome_print (1.9.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- appraisal (1.0.2)
9
+ appraisal (2.3.0)
10
10
  bundler
11
11
  rake
12
12
  thor (>= 0.14.0)
13
- diff-lcs (1.2.5)
14
- fakefs (0.6.0)
15
- mini_portile (0.6.2)
16
- nokogiri (1.6.5)
17
- mini_portile (~> 0.6.0)
18
- rake (10.4.2)
19
- rspec (3.1.0)
20
- rspec-core (~> 3.1.0)
21
- rspec-expectations (~> 3.1.0)
22
- rspec-mocks (~> 3.1.0)
23
- rspec-core (3.1.7)
24
- rspec-support (~> 3.1.0)
25
- rspec-expectations (3.1.2)
13
+ diff-lcs (1.4.4)
14
+ fakefs (1.3.2)
15
+ mini_portile2 (2.5.0)
16
+ nokogiri (1.11.1)
17
+ mini_portile2 (~> 2.5.0)
18
+ racc (~> 1.4)
19
+ racc (1.5.2)
20
+ rake (13.0.3)
21
+ rspec (3.10.0)
22
+ rspec-core (~> 3.10.0)
23
+ rspec-expectations (~> 3.10.0)
24
+ rspec-mocks (~> 3.10.0)
25
+ rspec-core (3.10.1)
26
+ rspec-support (~> 3.10.0)
27
+ rspec-expectations (3.10.1)
26
28
  diff-lcs (>= 1.2.0, < 2.0)
27
- rspec-support (~> 3.1.0)
28
- rspec-mocks (3.1.3)
29
- rspec-support (~> 3.1.0)
30
- rspec-support (3.1.2)
31
- sqlite3 (1.3.10)
32
- thor (0.19.1)
29
+ rspec-support (~> 3.10.0)
30
+ rspec-mocks (3.10.1)
31
+ diff-lcs (>= 1.2.0, < 2.0)
32
+ rspec-support (~> 3.10.0)
33
+ rspec-support (3.10.1)
34
+ sqlite3 (1.4.2)
35
+ thor (1.1.0)
33
36
 
34
37
  PLATFORMS
35
38
  ruby
@@ -38,6 +41,9 @@ DEPENDENCIES
38
41
  appraisal
39
42
  awesome_print!
40
43
  fakefs (>= 0.2.1)
41
- nokogiri (>= 1.6.5)
44
+ nokogiri (>= 1.11.0)
42
45
  rspec (>= 3.0.0)
43
46
  sqlite3
47
+
48
+ BUNDLED WITH
49
+ 2.2.8
data/LICENSE CHANGED
@@ -1,22 +1,19 @@
1
- Copyright (c) 2010-2013 Michael Dvorkin
2
- http://www.dvorkin.net
3
- %w(mike dvorkin.net) * "@" || "twitter.com/mid"
1
+ Copyright (c) 2010-2019 Michael Dvorkin
4
2
 
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
12
9
 
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
15
12
 
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.