hexlet-points 1.0.1 → 2.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 +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.rubocop.yml +1 -0
- data/Gemfile +1 -3
- data/Gemfile.lock +8 -21
- data/Makefile +3 -1
- data/README.md +1 -1
- data/hexlet-points.gemspec +1 -1
- data/lib/points/version.rb +2 -2
- data/lib/points.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 340ddef0a6ae468ecdeb575adcbde6bada69ff97bbd7db54b04e7dbd8f10c498
|
4
|
+
data.tar.gz: 6b6b7244a04e2d247815082091b2413092f310037ee4c985d13df69b6e2e05e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3af9588be1c8c757ce1a5d79feb152b201004e2f2ded0d9b4a1b2dedbd1173ae417f749fa1a0bedac77d274b93fc1a8d77d2ccda36787c06982d24d2b4bf4a7
|
7
|
+
data.tar.gz: e2327ec5fcd2010eb7c46ff88d1942b957d30577f9b4e505ec802a1ac59439639782b0ae97ea2018e376f7ed91a65f2d39785a8cd8e309f1b984cfd6d5c20557
|
data/.github/workflows/ci.yml
CHANGED
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,33 +1,24 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hexlet-points (
|
4
|
+
hexlet-points (2.0.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
ast (2.4.2)
|
10
|
-
diff-lcs (1.4.4)
|
11
10
|
hexlet-pairs (1.1.0)
|
11
|
+
minitest (5.15.0)
|
12
|
+
minitest-power_assert (0.3.1)
|
13
|
+
minitest
|
14
|
+
power_assert (>= 1.1)
|
12
15
|
parallel (1.20.1)
|
13
16
|
parser (3.0.1.0)
|
14
17
|
ast (~> 2.4.1)
|
18
|
+
power_assert (2.0.0)
|
15
19
|
rainbow (3.0.0)
|
16
20
|
regexp_parser (2.1.1)
|
17
21
|
rexml (3.2.5)
|
18
|
-
rspec (3.10.0)
|
19
|
-
rspec-core (~> 3.10.0)
|
20
|
-
rspec-expectations (~> 3.10.0)
|
21
|
-
rspec-mocks (~> 3.10.0)
|
22
|
-
rspec-core (3.10.0)
|
23
|
-
rspec-support (~> 3.10.0)
|
24
|
-
rspec-expectations (3.10.0)
|
25
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
26
|
-
rspec-support (~> 3.10.0)
|
27
|
-
rspec-mocks (3.10.0)
|
28
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
29
|
-
rspec-support (~> 3.10.0)
|
30
|
-
rspec-support (3.10.0)
|
31
22
|
rubocop (1.12.1)
|
32
23
|
parallel (~> 1.10)
|
33
24
|
parser (>= 3.0.0.0)
|
@@ -39,9 +30,6 @@ GEM
|
|
39
30
|
unicode-display_width (>= 1.4.0, < 3.0)
|
40
31
|
rubocop-ast (1.4.1)
|
41
32
|
parser (>= 2.7.1.5)
|
42
|
-
rubocop-rspec (2.2.0)
|
43
|
-
rubocop (~> 1.0)
|
44
|
-
rubocop-ast (>= 1.1.0)
|
45
33
|
ruby-progressbar (1.11.0)
|
46
34
|
unicode-display_width (2.0.0)
|
47
35
|
|
@@ -51,9 +39,8 @@ PLATFORMS
|
|
51
39
|
DEPENDENCIES
|
52
40
|
hexlet-pairs (~> 1.1.0)
|
53
41
|
hexlet-points!
|
54
|
-
|
42
|
+
minitest-power_assert
|
55
43
|
rubocop (~> 1.12.1)
|
56
|
-
rubocop-rspec (~> 2.2.0)
|
57
44
|
|
58
45
|
BUNDLED WITH
|
59
|
-
2.2.
|
46
|
+
2.2.22
|
data/Makefile
CHANGED
data/README.md
CHANGED
@@ -23,6 +23,6 @@ puts get_quadrant(point) # => 1
|
|
23
23
|
puts to_string(point) # => '(4, 5)'
|
24
24
|
```
|
25
25
|
|
26
|
-
[](https://ru.hexlet.io/pages/about?utm_source=github&utm_medium=link&utm_campaign=ruby-points)
|
27
27
|
|
28
28
|
This repository is created and maintained by the team and the community of Hexlet, an educational project. [Read more about Hexlet (in Russian)](https://ru.hexlet.io/pages/about?utm_source=github&utm_medium=link&utm_campaign=ruby-points).
|
data/hexlet-points.gemspec
CHANGED
data/lib/points/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = '
|
1
|
+
module Points
|
2
|
+
VERSION = '2.0.0'.freeze
|
3
3
|
end
|
data/lib/points.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hexlet-points
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hexlet
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A SICP'ish Points implemented in Ruby using hexlet-pairs.
|
14
14
|
email:
|
@@ -34,7 +34,7 @@ metadata:
|
|
34
34
|
homepage_uri: https://github.com/hexlet-components/ruby-points
|
35
35
|
source_code_uri: https://github.com/hexlet-components/ruby-points
|
36
36
|
changelog_uri: https://github.com/hexlet-components/ruby-points
|
37
|
-
post_install_message:
|
37
|
+
post_install_message:
|
38
38
|
rdoc_options: []
|
39
39
|
require_paths:
|
40
40
|
- lib
|
@@ -49,8 +49,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
49
|
- !ruby/object:Gem::Version
|
50
50
|
version: '0'
|
51
51
|
requirements: []
|
52
|
-
rubygems_version: 3.
|
53
|
-
signing_key:
|
52
|
+
rubygems_version: 3.2.22
|
53
|
+
signing_key:
|
54
54
|
specification_version: 4
|
55
55
|
summary: Hexlet Ruby Point
|
56
56
|
test_files: []
|