grizzly-rb 1.0.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.
- checksums.yaml +7 -0
- data/.github/workflows/ci.yml +58 -0
- data/.gitignore +13 -0
- data/.rubocop.yml +23 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +56 -0
- data/LICENSE.txt +21 -0
- data/README.md +192 -0
- data/Rakefile +16 -0
- data/benchmark.rb +59 -0
- data/benchmark.txt +73 -0
- data/bin/console +22 -0
- data/bin/convert +15 -0
- data/bin/setup +11 -0
- data/bin/spec/convert +27 -0
- data/bin/spec/reset +9 -0
- data/bin/spec/setup +20 -0
- data/bin/test +38 -0
- data/config/mspec_override.rb +44 -0
- data/config/skipped_tests.yml +104 -0
- data/conversion/Gemfile +7 -0
- data/conversion/Gemfile.lock +53 -0
- data/conversion/bin/rspec +27 -0
- data/conversion/lib/cops/array_initialization.rb +95 -0
- data/conversion/lib/cops/enumerator_initialization.rb +56 -0
- data/conversion/lib/cops/grep_implementation.rb +36 -0
- data/conversion/lib/cops/instance_of_array.rb +24 -0
- data/conversion/lib/cops/subclass_initialization.rb +47 -0
- data/conversion/lib/cops.rb +6 -0
- data/conversion/spec/.DS_Store +0 -0
- data/conversion/spec/cops/array_initialization_spec.rb +154 -0
- data/conversion/spec/cops/enumerator_initialization_spec.rb +105 -0
- data/conversion/spec/cops/grep_implementation_spec.rb +57 -0
- data/conversion/spec/cops/instance_of_array_spec.rb +38 -0
- data/conversion/spec/cops/subclass_initialization_spec.rb +26 -0
- data/conversion/spec/spec_helper.rb +104 -0
- data/examples/transactions.rb +278 -0
- data/grizzly-group.gemspec +28 -0
- data/lib/grizzly/collection.rb +77 -0
- data/lib/grizzly/enumerable.rb +120 -0
- data/lib/grizzly/enumerator-backup.rb +114 -0
- data/lib/grizzly/enumerator.rb +63 -0
- data/lib/grizzly/lazy_enumerator.rb +40 -0
- data/lib/grizzly/version.rb +3 -0
- data/lib/grizzly.rb +8 -0
- metadata +89 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 24c416adb1060b6c503e854c13d11166c7d3ebaf13ec72462ef3c26ef3da24eb
|
4
|
+
data.tar.gz: ca6e02092abf336a2ba350ff447500ceb438a6d21e06a17e15cea6e5e83e7ac1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: dad40d7758cc00c7c1153a7ee5a68184ba1368097bc707fd1c896bd6d4c4c60a0cfe7d45d6d5585d032c2ca6283eda32997b2769539e3f07025e9f88218a0ce3
|
7
|
+
data.tar.gz: 856682a5ae9346ada2725334aaaaf8e59bc85b89557f7d421963f5c7a9f54b27ebf533d0e3aeb15d3e3bbbdf7f4d81bf58c63ba20db827062bb8c1488a228fc7
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: Ruby
|
9
|
+
|
10
|
+
on:
|
11
|
+
push:
|
12
|
+
branches: [ main ]
|
13
|
+
pull_request:
|
14
|
+
branches: [ main ]
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
unit-tests:
|
18
|
+
runs-on: ubuntu-latest
|
19
|
+
strategy:
|
20
|
+
matrix:
|
21
|
+
ruby:
|
22
|
+
- '2.7'
|
23
|
+
- '3.0'
|
24
|
+
- '3.1'
|
25
|
+
- '3.2'
|
26
|
+
name: Ruby ${{ matrix.ruby }} tests
|
27
|
+
steps:
|
28
|
+
- uses: actions/checkout@v3
|
29
|
+
- name: Set up Ruby
|
30
|
+
uses: ruby/setup-ruby@v1
|
31
|
+
with:
|
32
|
+
ruby-version: ${{ matrix.ruby }}
|
33
|
+
bundler-cache: true
|
34
|
+
- run: gem install byebug
|
35
|
+
- run: bin/setup
|
36
|
+
- run: bin/test
|
37
|
+
|
38
|
+
conversions-tests:
|
39
|
+
runs-on: ubuntu-latest
|
40
|
+
defaults:
|
41
|
+
run:
|
42
|
+
working-directory: ./conversion
|
43
|
+
strategy:
|
44
|
+
matrix:
|
45
|
+
ruby:
|
46
|
+
- '2.7'
|
47
|
+
- '3.0'
|
48
|
+
- '3.1'
|
49
|
+
- '3.2'
|
50
|
+
name: Conversion tests - Ruby ${{ matrix.ruby }}
|
51
|
+
steps:
|
52
|
+
- uses: actions/checkout@v3
|
53
|
+
- name: Set up Ruby
|
54
|
+
uses: ruby/setup-ruby@v1
|
55
|
+
with:
|
56
|
+
ruby-version: ${{ matrix.ruby }}
|
57
|
+
- run: bundle install
|
58
|
+
- run: bundle exec rspec spec
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# .rubocop.yml
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
NewCops: disable
|
5
|
+
|
6
|
+
require:
|
7
|
+
- ./conversion/lib/cops.rb
|
8
|
+
|
9
|
+
Style/ArrayInitialization:
|
10
|
+
Enabled: true
|
11
|
+
InitializeArrayWith: Grizzly::Collection
|
12
|
+
|
13
|
+
Style/GrepImplementation:
|
14
|
+
Enabled: true
|
15
|
+
GrepSupportRubyVersion: 5.0
|
16
|
+
|
17
|
+
Style/InstanceOfArray:
|
18
|
+
Enabled: true
|
19
|
+
NewInstanceOf: Grizzly::Collection
|
20
|
+
|
21
|
+
Style/EnumeratorInitialization:
|
22
|
+
Enabled: true
|
23
|
+
InitializeEnumeratorWith: Grizzly::Enumerator
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
grizzly-rb (1.0.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
ast (2.4.2)
|
10
|
+
byebug (11.1.3)
|
11
|
+
diff-lcs (1.1.2)
|
12
|
+
json (2.6.2)
|
13
|
+
minitest (5.16.3)
|
14
|
+
parallel (1.22.1)
|
15
|
+
parser (3.1.2.1)
|
16
|
+
ast (~> 2.4.1)
|
17
|
+
rainbow (3.1.1)
|
18
|
+
rake (12.3.3)
|
19
|
+
regexp_parser (2.6.0)
|
20
|
+
rexml (3.2.5)
|
21
|
+
rspec (2.1.0)
|
22
|
+
rspec-core (~> 2.1.0)
|
23
|
+
rspec-expectations (~> 2.1.0)
|
24
|
+
rspec-mocks (~> 2.1.0)
|
25
|
+
rspec-core (2.1.0)
|
26
|
+
rspec-expectations (2.1.0)
|
27
|
+
diff-lcs (~> 1.1.2)
|
28
|
+
rspec-mocks (2.1.0)
|
29
|
+
rubocop (1.36.0)
|
30
|
+
json (~> 2.3)
|
31
|
+
parallel (~> 1.10)
|
32
|
+
parser (>= 3.1.2.1)
|
33
|
+
rainbow (>= 2.2.2, < 4.0)
|
34
|
+
regexp_parser (>= 1.8, < 3.0)
|
35
|
+
rexml (>= 3.2.5, < 4.0)
|
36
|
+
rubocop-ast (>= 1.20.1, < 2.0)
|
37
|
+
ruby-progressbar (~> 1.7)
|
38
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
39
|
+
rubocop-ast (1.21.0)
|
40
|
+
parser (>= 3.1.1.0)
|
41
|
+
ruby-progressbar (1.11.0)
|
42
|
+
unicode-display_width (2.3.0)
|
43
|
+
|
44
|
+
PLATFORMS
|
45
|
+
ruby
|
46
|
+
|
47
|
+
DEPENDENCIES
|
48
|
+
byebug
|
49
|
+
grizzly-rb!
|
50
|
+
minitest (~> 5.0)
|
51
|
+
rake (~> 12.0)
|
52
|
+
rspec
|
53
|
+
rubocop
|
54
|
+
|
55
|
+
BUNDLED WITH
|
56
|
+
2.3.26
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Alexandre Barret
|
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,192 @@
|
|
1
|
+
:anger: **DISCLAIMER**: Reading this piece isn't for the faint of heart.
|
2
|
+
|
3
|
+
# Grizzly library
|
4
|
+
|
5
|
+
The Grizzly library is an attempt to end the predominance of the Array in Ruby by providing a Collection class that returns expected results from subgrouping methods like `Array#select, Array#partition, Array#reject`, to name a few. The work came after reading [Steve Klabnik's warning](https://steveklabnik.com/writing/beware-subclassing-ruby-core-classes) & [gist](https://gist.github.com/steveklabnik/6071687) about subclassing Ruby core classes.
|
6
|
+
|
7
|
+
We're testing the library against the [Ruby/Spec](https://github.com/ruby/spec) to avoid as many side effects as possible.
|
8
|
+
|
9
|
+
The library provides four classes/modules:
|
10
|
+
|
11
|
+
* Grizzly::Collection (Array subclass)
|
12
|
+
* Grizzly::Enumerable (Enumerable extension)
|
13
|
+
* Grizzly::Enumerator (Enumerator decorator)
|
14
|
+
* Grizzly::LazyEnumerator (Enumerator::Lazy decorator)
|
15
|
+
|
16
|
+
**The Grizzly::Collection is a subclass of Array that works; you will love to hate it.**
|
17
|
+
|
18
|
+
## Usage
|
19
|
+
|
20
|
+
For an extensive use of the library you can see this [file](examples/transactions.rb)
|
21
|
+
|
22
|
+
```ruby
|
23
|
+
require "grizzly"
|
24
|
+
|
25
|
+
Mark = Struct.new(:score)
|
26
|
+
|
27
|
+
class MarkCollection < Grizzly::Collection
|
28
|
+
def average_score
|
29
|
+
sum(&:score) / size.to_f
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
marks = MarkCollection.new (0..100).to_a.map { |i| Mark.new(i) }
|
34
|
+
|
35
|
+
marks.select { |mark| mark.score.even? }.
|
36
|
+
average_score
|
37
|
+
|
38
|
+
# => 50.0
|
39
|
+
|
40
|
+
marks.select { |mark| mark.score.even? }.
|
41
|
+
reject { |mark| mark.score <= 80 }.
|
42
|
+
average_score
|
43
|
+
|
44
|
+
# => 91.0
|
45
|
+
```
|
46
|
+
|
47
|
+
### Gotchas
|
48
|
+
|
49
|
+
`Grizzly::Collection` methods try their best to return what you would expect. That said there are some methods with special behaviour.
|
50
|
+
|
51
|
+
* `#map` returns an instance of the subclass and not an Array.
|
52
|
+
* `#to_a` returns an Array
|
53
|
+
* `#transpose`, `#product`, `#zip`, `#partition`, `#group_by`: check their implementation and specs as they return subgroups
|
54
|
+
* `#grep` and `#grep_v` methods are not supported and will raise: See issue https://github.com/AlexB52/grizzly-rb/issues/8
|
55
|
+
|
56
|
+
## Ruby support
|
57
|
+
|
58
|
+
Ruby 2.7+
|
59
|
+
|
60
|
+
## Roadmap
|
61
|
+
|
62
|
+
- [X] Array
|
63
|
+
- [X] Enumerable
|
64
|
+
- [X] Enumerator
|
65
|
+
- [X] Lazy Enumerator
|
66
|
+
- [X] Benchmarks
|
67
|
+
|
68
|
+
## Benchmark
|
69
|
+
|
70
|
+
You can run the benchmark with `ruby benchmark.rb`
|
71
|
+
|
72
|
+
The benchmark runs over increments of list with 10\*\*n items for a total of 5_000_000 iterations.
|
73
|
+
|
74
|
+
### Conclusions
|
75
|
+
|
76
|
+
This library initialize a new collection everytime the Array method returns.
|
77
|
+
|
78
|
+
Chaining methods with Grizzly::Collection is:
|
79
|
+
* really expensive for list with a small number of items. <= 10
|
80
|
+
* less of a problem with lists over 100 items
|
81
|
+
|
82
|
+
### Raw Results
|
83
|
+
```
|
84
|
+
=== One method ===
|
85
|
+
{ |list| list.select(&:odd?) }
|
86
|
+
|
87
|
+
user system total real
|
88
|
+
List of length 1 iterated over 5000000 times - Array 1.465777 0.010639 1.476416 ( 1.484419)
|
89
|
+
List of length 1 iterated over 5000000 times - Grizzly::Collection 4.173212 0.025837 4.199049 ( 4.219159)
|
90
|
+
|
91
|
+
user system total real
|
92
|
+
List of length 10 iterated over 500000 times - Array 0.449475 0.002248 0.451723 ( 0.453940)
|
93
|
+
List of length 10 iterated over 500000 times - Grizzly::Collection 0.848438 0.006855 0.855293 ( 0.858316)
|
94
|
+
|
95
|
+
user system total real
|
96
|
+
List of length 100 iterated over 50000 times - Array 0.342236 0.003515 0.345751 ( 0.347207)
|
97
|
+
List of length 100 iterated over 50000 times - Grizzly::Collection 0.389331 0.005771 0.395102 ( 0.396907)
|
98
|
+
|
99
|
+
user system total real
|
100
|
+
List of length 1000 iterated over 5000 times - Array 0.367041 0.013971 0.381012 ( 0.384799)
|
101
|
+
List of length 1000 iterated over 5000 times - Grizzly::Collection 0.338568 0.007703 0.346271 ( 0.347265)
|
102
|
+
|
103
|
+
user system total real
|
104
|
+
List of length 10000 iterated over 500 times - Array 0.332582 0.008056 0.340638 ( 0.341963)
|
105
|
+
List of length 10000 iterated over 500 times - Grizzly::Collection 0.338311 0.016007 0.354318 ( 0.356256)
|
106
|
+
|
107
|
+
|
108
|
+
=== Two chained methods ===
|
109
|
+
{ |list| list.select(&:odd?).reject(&:odd?) }
|
110
|
+
|
111
|
+
user system total real
|
112
|
+
List of length 1 iterated over 5000000 times - Array 2.087311 0.016413 2.103724 ( 2.114187)
|
113
|
+
List of length 1 iterated over 5000000 times - Grizzly::Collection 8.177386 0.051953 8.229339 ( 8.265598)
|
114
|
+
|
115
|
+
user system total real
|
116
|
+
List of length 10 iterated over 500000 times - Array 0.649130 0.002928 0.652058 ( 0.654708)
|
117
|
+
List of length 10 iterated over 500000 times - Grizzly::Collection 1.408604 0.009925 1.418529 ( 1.424733)
|
118
|
+
|
119
|
+
user system total real
|
120
|
+
List of length 100 iterated over 50000 times - Array 0.503027 0.001814 0.504841 ( 0.506741)
|
121
|
+
List of length 100 iterated over 50000 times - Grizzly::Collection 0.623167 0.005466 0.628633 ( 0.632303)
|
122
|
+
|
123
|
+
user system total real
|
124
|
+
List of length 1000 iterated over 5000 times - Array 0.486371 0.003466 0.489837 ( 0.491048)
|
125
|
+
List of length 1000 iterated over 5000 times - Grizzly::Collection 0.500942 0.005642 0.506584 ( 0.509051)
|
126
|
+
|
127
|
+
user system total real
|
128
|
+
List of length 10000 iterated over 500 times - Array 0.492759 0.008542 0.501301 ( 0.503459)
|
129
|
+
List of length 10000 iterated over 500 times - Grizzly::Collection 0.514448 0.014804 0.529252 ( 0.531968)
|
130
|
+
|
131
|
+
|
132
|
+
=== Chained enumerators ===
|
133
|
+
{ |list| list.select.each.select.reject(&:odd?) }
|
134
|
+
|
135
|
+
user system total real
|
136
|
+
List of length 1 iterated over 5000000 times - Array 5.537677 0.066783 5.604460 ( 5.630154)
|
137
|
+
List of length 1 iterated over 5000000 times - Grizzly::Collection 30.203623 0.230334 30.433957 ( 30.573476)
|
138
|
+
|
139
|
+
user system total real
|
140
|
+
List of length 10 iterated over 500000 times - Array 1.060200 0.008406 1.068606 ( 1.073304)
|
141
|
+
List of length 10 iterated over 500000 times - Grizzly::Collection 3.674943 0.029664 3.704607 ( 3.721847)
|
142
|
+
|
143
|
+
user system total real
|
144
|
+
List of length 100 iterated over 50000 times - Array 0.570368 0.003019 0.573387 ( 0.575771)
|
145
|
+
List of length 100 iterated over 50000 times - Grizzly::Collection 0.895747 0.005782 0.901529 ( 0.906251)
|
146
|
+
|
147
|
+
user system total real
|
148
|
+
List of length 1000 iterated over 5000 times - Array 0.518924 0.003155 0.522079 ( 0.524788)
|
149
|
+
List of length 1000 iterated over 5000 times - Grizzly::Collection 0.553667 0.004346 0.558013 ( 0.560381)
|
150
|
+
|
151
|
+
user system total real
|
152
|
+
List of length 10000 iterated over 500 times - Array 0.518883 0.010600 0.529483 ( 0.531777)
|
153
|
+
List of length 10000 iterated over 500 times - Grizzly::Collection 0.528470 0.014786 0.543256 ( 0.545524)
|
154
|
+
```
|
155
|
+
|
156
|
+
## Installation
|
157
|
+
|
158
|
+
Add this line to your application's Gemfile:
|
159
|
+
|
160
|
+
```ruby
|
161
|
+
gem 'grizzly-rb', require: 'grizzly'
|
162
|
+
```
|
163
|
+
|
164
|
+
And then execute:
|
165
|
+
|
166
|
+
$ bundle install
|
167
|
+
|
168
|
+
Or install it yourself as:
|
169
|
+
|
170
|
+
$ gem install grizzly-rb
|
171
|
+
|
172
|
+
## Development
|
173
|
+
|
174
|
+
```bash
|
175
|
+
# Setup dependencies: bundler, mspec and ruby-spec
|
176
|
+
$ bin/setup
|
177
|
+
|
178
|
+
# Run all specs
|
179
|
+
$ bin/test
|
180
|
+
```
|
181
|
+
|
182
|
+
### Prototype with console
|
183
|
+
|
184
|
+
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
185
|
+
|
186
|
+
## Contributing
|
187
|
+
|
188
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/grizzly-rb.
|
189
|
+
|
190
|
+
## License
|
191
|
+
|
192
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/testtask"
|
3
|
+
|
4
|
+
Rake::TestTask.new(:test) do |t|
|
5
|
+
t.libs << "test"
|
6
|
+
t.libs << "lib"
|
7
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
8
|
+
end
|
9
|
+
|
10
|
+
# task :default => :test
|
11
|
+
task :default => [:test, :spec]
|
12
|
+
|
13
|
+
desc 'Runs the group spec with mspec'
|
14
|
+
task :spec do
|
15
|
+
system 'bundle exec ../mspec/bin/mspec spec/grizzly'
|
16
|
+
end
|
data/benchmark.rb
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
$LOAD_PATH.unshift File.expand_path("lib", __dir__)
|
2
|
+
|
3
|
+
require "grizzly"
|
4
|
+
require "byebug"
|
5
|
+
require "minitest/autorun"
|
6
|
+
require "benchmark"
|
7
|
+
|
8
|
+
class TestClassReturned < Minitest::Test
|
9
|
+
def setup
|
10
|
+
@array = (0..1000).to_a
|
11
|
+
@collection = Grizzly::Collection.new @array
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_class_returned_are_valid
|
15
|
+
assert_equal Array, @array.select(&:odd?).class
|
16
|
+
assert_equal Grizzly::Collection, @collection.select(&:odd?).class
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def run_benchmark(items:, iterations:, &block)
|
21
|
+
puts
|
22
|
+
array = (0..items).to_a
|
23
|
+
collection = Grizzly::Collection.new array
|
24
|
+
|
25
|
+
Benchmark.bm(70) do |x|
|
26
|
+
x.report("List of length #{items} iterated over #{iterations} times - Array") { iterations.times { block.call array } }
|
27
|
+
x.report("List of length #{items} iterated over #{iterations} times - Grizzly::Collection") { iterations.times { block.call collection } }
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def run_benchmarks(&block)
|
32
|
+
n = 1
|
33
|
+
while n <= 10_000
|
34
|
+
limit = 5_000_000 / n
|
35
|
+
run_benchmark(items:n, iterations: limit, &block)
|
36
|
+
n *= 10
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
puts
|
41
|
+
puts
|
42
|
+
puts "=== One method ==="
|
43
|
+
puts "{ |list| list.select(&:odd?) }"
|
44
|
+
|
45
|
+
run_benchmarks { |list| list.select(&:odd?) }
|
46
|
+
|
47
|
+
puts
|
48
|
+
puts
|
49
|
+
puts "=== Two chained methods ==="
|
50
|
+
puts "{ |list| list.select(&:odd?).reject(&:odd?) }"
|
51
|
+
|
52
|
+
run_benchmarks { |list| list.select(&:odd?).reject(&:odd?) }
|
53
|
+
|
54
|
+
puts
|
55
|
+
puts
|
56
|
+
puts "=== Chained enumerators ==="
|
57
|
+
puts "{ |list| list.select.each.select.reject(&:odd?) }"
|
58
|
+
|
59
|
+
run_benchmarks { |list| list.select.each.select.reject(&:odd?) }
|
data/benchmark.txt
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
=== One method ===
|
4
|
+
{ |list| list.select(&:odd?) }
|
5
|
+
|
6
|
+
user system total real
|
7
|
+
List of length 1 iterated over 5000000 times - Array 1.465777 0.010639 1.476416 ( 1.484419)
|
8
|
+
List of length 1 iterated over 5000000 times - Grizzly::Collection 4.173212 0.025837 4.199049 ( 4.219159)
|
9
|
+
|
10
|
+
user system total real
|
11
|
+
List of length 10 iterated over 500000 times - Array 0.449475 0.002248 0.451723 ( 0.453940)
|
12
|
+
List of length 10 iterated over 500000 times - Grizzly::Collection 0.848438 0.006855 0.855293 ( 0.858316)
|
13
|
+
|
14
|
+
user system total real
|
15
|
+
List of length 100 iterated over 50000 times - Array 0.342236 0.003515 0.345751 ( 0.347207)
|
16
|
+
List of length 100 iterated over 50000 times - Grizzly::Collection 0.389331 0.005771 0.395102 ( 0.396907)
|
17
|
+
|
18
|
+
user system total real
|
19
|
+
List of length 1000 iterated over 5000 times - Array 0.367041 0.013971 0.381012 ( 0.384799)
|
20
|
+
List of length 1000 iterated over 5000 times - Grizzly::Collection 0.338568 0.007703 0.346271 ( 0.347265)
|
21
|
+
|
22
|
+
user system total real
|
23
|
+
List of length 10000 iterated over 500 times - Array 0.332582 0.008056 0.340638 ( 0.341963)
|
24
|
+
List of length 10000 iterated over 500 times - Grizzly::Collection 0.338311 0.016007 0.354318 ( 0.356256)
|
25
|
+
|
26
|
+
|
27
|
+
=== Two chained methods ===
|
28
|
+
{ |list| list.select(&:odd?).reject(&:odd?) }
|
29
|
+
|
30
|
+
user system total real
|
31
|
+
List of length 1 iterated over 5000000 times - Array 2.087311 0.016413 2.103724 ( 2.114187)
|
32
|
+
List of length 1 iterated over 5000000 times - Grizzly::Collection 8.177386 0.051953 8.229339 ( 8.265598)
|
33
|
+
|
34
|
+
user system total real
|
35
|
+
List of length 10 iterated over 500000 times - Array 0.649130 0.002928 0.652058 ( 0.654708)
|
36
|
+
List of length 10 iterated over 500000 times - Grizzly::Collection 1.408604 0.009925 1.418529 ( 1.424733)
|
37
|
+
|
38
|
+
user system total real
|
39
|
+
List of length 100 iterated over 50000 times - Array 0.503027 0.001814 0.504841 ( 0.506741)
|
40
|
+
List of length 100 iterated over 50000 times - Grizzly::Collection 0.623167 0.005466 0.628633 ( 0.632303)
|
41
|
+
|
42
|
+
user system total real
|
43
|
+
List of length 1000 iterated over 5000 times - Array 0.486371 0.003466 0.489837 ( 0.491048)
|
44
|
+
List of length 1000 iterated over 5000 times - Grizzly::Collection 0.500942 0.005642 0.506584 ( 0.509051)
|
45
|
+
|
46
|
+
user system total real
|
47
|
+
List of length 10000 iterated over 500 times - Array 0.492759 0.008542 0.501301 ( 0.503459)
|
48
|
+
List of length 10000 iterated over 500 times - Grizzly::Collection 0.514448 0.014804 0.529252 ( 0.531968)
|
49
|
+
|
50
|
+
|
51
|
+
=== Chained enumerators ===
|
52
|
+
{ |list| list.select.each.select.reject(&:odd?) }
|
53
|
+
|
54
|
+
user system total real
|
55
|
+
List of length 1 iterated over 5000000 times - Array 5.537677 0.066783 5.604460 ( 5.630154)
|
56
|
+
List of length 1 iterated over 5000000 times - Grizzly::Collection 30.203623 0.230334 30.433957 ( 30.573476)
|
57
|
+
|
58
|
+
user system total real
|
59
|
+
List of length 10 iterated over 500000 times - Array 1.060200 0.008406 1.068606 ( 1.073304)
|
60
|
+
List of length 10 iterated over 500000 times - Grizzly::Collection 3.674943 0.029664 3.704607 ( 3.721847)
|
61
|
+
|
62
|
+
user system total real
|
63
|
+
List of length 100 iterated over 50000 times - Array 0.570368 0.003019 0.573387 ( 0.575771)
|
64
|
+
List of length 100 iterated over 50000 times - Grizzly::Collection 0.895747 0.005782 0.901529 ( 0.906251)
|
65
|
+
|
66
|
+
user system total real
|
67
|
+
List of length 1000 iterated over 5000 times - Array 0.518924 0.003155 0.522079 ( 0.524788)
|
68
|
+
List of length 1000 iterated over 5000 times - Grizzly::Collection 0.553667 0.004346 0.558013 ( 0.560381)
|
69
|
+
|
70
|
+
user system total real
|
71
|
+
List of length 10000 iterated over 500 times - Array 0.518883 0.010600 0.529483 ( 0.531777)
|
72
|
+
List of length 10000 iterated over 500 times - Grizzly::Collection 0.528470 0.014786 0.543256 ( 0.545524)
|
73
|
+
|
data/bin/console
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "grizzly"
|
5
|
+
require "rubocop"
|
6
|
+
require "byebug"
|
7
|
+
|
8
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
9
|
+
# with your gem easier. You can also use a different console, if you like.
|
10
|
+
|
11
|
+
class MyCollection < Grizzly::Collection;end
|
12
|
+
|
13
|
+
def setup
|
14
|
+
MyCollection.new (0..100).to_a
|
15
|
+
end
|
16
|
+
|
17
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
18
|
+
# require "pry"
|
19
|
+
# Pry.start
|
20
|
+
|
21
|
+
require "irb"
|
22
|
+
IRB.start(__FILE__)
|
data/bin/convert
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "grizzly"
|
5
|
+
require 'byebug'
|
6
|
+
require_relative "../conversion/lib/cops"
|
7
|
+
|
8
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
9
|
+
# with your gem easier. You can also use a different console, if you like.
|
10
|
+
|
11
|
+
if ARGV[2]
|
12
|
+
`rubocop --only #{ARGV[1]} -c .rubocop.yml -a #{ARGV[0]}`
|
13
|
+
else
|
14
|
+
`rubocop --only #{ARGV[1]} -c .rubocop.yml #{ARGV[0]}`
|
15
|
+
end
|
data/bin/setup
ADDED
data/bin/spec/convert
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
# Array gsub
|
4
|
+
bin/convert ruby-spec/core/array 'Style/ArrayInitialization' 'autocorrect'
|
5
|
+
find ruby-spec/core/array -type f -name "*.rb" -exec sed -i.bak "s/ArraySpecs::MyArray/Grizzly::Collection/g" {} \;
|
6
|
+
find ruby-spec/core/array -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Array)/be_an_instance_of(Grizzly::Collection)/g" {} \;
|
7
|
+
find ruby-spec/core/array -type f -name "*.rb" -exec sed -i.bak "s/should equal Array/should equal Grizzly::Collection/g" {} \;
|
8
|
+
find ruby-spec/core/array -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Enumerator)/be_an_instance_of(Grizzly::Enumerator)/g" {} \;
|
9
|
+
|
10
|
+
# Enumerable gsub
|
11
|
+
bin/convert ruby-spec/core/enumerable 'Style/ArrayInitialization,Style/GrepImplementation' 'autocorrect'
|
12
|
+
find ruby-spec/core/enumerable/fixtures/classes.rb -type f -name "*.rb" -exec sed -i.bak "s/include Enumerable/include Grizzly::Enumerable\\ndef instantiating_class\\nGrizzly::Collection\\nend/g" {} \;
|
13
|
+
find ruby-spec/core/enumerable -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Enumerator)/be_an_instance_of(Grizzly::Enumerator)/g" {} \;
|
14
|
+
|
15
|
+
# Enumerator
|
16
|
+
bin/convert ruby-spec/core/enumerator 'Style/EnumeratorInitialization' 'autocorrect'
|
17
|
+
find ruby-spec/core/enumerator -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Enumerator)/be_an_instance_of(Grizzly::Enumerator)/g" {} \;
|
18
|
+
find ruby-spec/core/enumerator -type f -name "*.rb" -exec sed -i.bak "s/\[1,2,3\].select/Grizzly::Enumerator.new([1,2,3].select)/g" {} \;
|
19
|
+
find ruby-spec/core/enumerator -type f -name "*.rb" -exec sed -i.bak "s/1.upto(3)/Grizzly::Enumerator.new(1.upto(3))/g" {} \;
|
20
|
+
|
21
|
+
find ruby-spec/shared/enumerator -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Enumerator)/be_an_instance_of(Grizzly::Enumerator)/g" {} \;
|
22
|
+
bin/convert ruby-spec/shared/enumerator 'Style/EnumeratorInitialization' 'autocorrect'
|
23
|
+
|
24
|
+
# Lazy Enumerator
|
25
|
+
find ruby-spec/core/enumerable -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Enumerator::Lazy)/be_an_instance_of(Grizzly::LazyEnumerator)/g" {} \;
|
26
|
+
find ruby-spec/core/enumerator -type f -name "*.rb" -exec sed -i.bak "s/be_an_instance_of(Enumerator::Lazy)/be_an_instance_of(Grizzly::LazyEnumerator)/g" {} \;
|
27
|
+
find ruby-spec/core/enumerator -type f -name "*.rb" -exec sed -i.bak "s/(0..Float::INFINITY).lazy/Grizzly::LazyEnumerator.new((0..Float::INFINITY).lazy)/g" {} \;
|
data/bin/spec/reset
ADDED
data/bin/spec/setup
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Reset if needed
|
4
|
+
|
5
|
+
`bin/spec/reset`
|
6
|
+
|
7
|
+
# Clone ruby/spec and MSpec
|
8
|
+
|
9
|
+
`git clone https://github.com/ruby/mspec.git mspec`
|
10
|
+
`git clone https://github.com/ruby/spec.git ruby-spec`
|
11
|
+
|
12
|
+
# Override MSpec to skip known failing tests
|
13
|
+
|
14
|
+
File.open("ruby-spec/spec_helper.rb", "a") do |f|
|
15
|
+
f.write "\n"
|
16
|
+
f.write File.read('config/mspec_override.rb')
|
17
|
+
f.write "\n"
|
18
|
+
end
|
19
|
+
|
20
|
+
`cp config/skipped_tests.yml ruby-spec/skipped_tests.yml`
|