quadtree 1.0.2 → 1.0.8
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 +4 -4
- data/.rubocop.yml +28 -0
- data/.rubocop_todo.yml +76 -0
- data/CODE_OF_CONDUCT.md +74 -74
- data/Gemfile +6 -6
- data/LICENSE.txt +21 -21
- data/README.md +7 -2
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/lib/quadtree.rb +9 -6
- data/lib/quadtree/axis_aligned_bounding_box.rb +91 -18
- data/lib/quadtree/point.rb +155 -60
- data/lib/quadtree/quadtree.rb +156 -50
- data/lib/quadtree/unknown_type_error.rb +8 -0
- data/lib/quadtree/version.rb +5 -1
- data/quadtree.gemspec +50 -22
- metadata +75 -22
- data/.editorconfig +0 -12
- data/.gitignore +0 -208
- data/.rspec +0 -3
- data/.travis.yml +0 -5
- data/bin/console +0 -7
- data/bin/setup +0 -8
- data/bitbucket-pipelines.yml +0 -17
data/.rspec
DELETED
data/.travis.yml
DELETED
data/bin/console
DELETED
data/bin/setup
DELETED
data/bitbucket-pipelines.yml
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# This is a sample build configuration for Ruby.
|
2
|
-
# Check our guides at https://confluence.atlassian.com/x/8r-5Mw for more examples.
|
3
|
-
image: ruby:2.4.0
|
4
|
-
|
5
|
-
pipelines:
|
6
|
-
default:
|
7
|
-
- step:
|
8
|
-
name: Ruby 2.4
|
9
|
-
caches:
|
10
|
-
- bundler
|
11
|
-
script:
|
12
|
-
- bundle install
|
13
|
-
- bundle exec rake spec
|
14
|
-
|
15
|
-
definitions:
|
16
|
-
caches:
|
17
|
-
bundler: ./vendor
|