File tree Expand file tree Collapse file tree 7 files changed +32
-22
lines changed Expand file tree Collapse file tree 7 files changed +32
-22
lines changed Original file line number Diff line number Diff line change 1
- 3.0.0
1
+ 3.0.2
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.10.2] - 2021-09-01
9
+
10
+ ### Fixed
11
+
12
+ - Allows methods to be called with no parameters
13
+
8
14
## [ 1.10.0] - 2021-08-27
9
15
10
16
### Added
Original file line number Diff line number Diff line change 17
17
byebug (11.1.3 )
18
18
coderay (1.1.3 )
19
19
concurrent-ruby (1.1.9 )
20
- diff-lcs (1.4.3 )
20
+ diff-lcs (1.4.4 )
21
21
ethon (0.14.0 )
22
22
ffi (>= 1.15.0 )
23
23
factory_bot (6.2.0 )
31
31
parallel (1.20.1 )
32
32
parser (3.0.2.0 )
33
33
ast (~> 2.4.1 )
34
- pry (0.13 .1 )
34
+ pry (0.14 .1 )
35
35
coderay (~> 1.1 )
36
36
method_source (~> 1.0 )
37
- pry-byebug (3.9 .0 )
37
+ pry-byebug (3.8 .0 )
38
38
byebug (~> 11.0 )
39
- pry (~> 0.13.0 )
39
+ pry (~> 0.10 )
40
40
psych (4.0.1 )
41
41
rainbow (3.0.0 )
42
- rake (13.0.1 )
43
- rspec (3.9 .0 )
44
- rspec-core (~> 3.9 .0 )
45
- rspec-expectations (~> 3.9 .0 )
46
- rspec-mocks (~> 3.9 .0 )
47
- rspec-core (3.9.2 )
48
- rspec-support (~> 3.9.3 )
49
- rspec-expectations (3.9.2 )
42
+ rake (13.0.6 )
43
+ rspec (3.10 .0 )
44
+ rspec-core (~> 3.10 .0 )
45
+ rspec-expectations (~> 3.10 .0 )
46
+ rspec-mocks (~> 3.10 .0 )
47
+ rspec-core (3.10.1 )
48
+ rspec-support (~> 3.10.0 )
49
+ rspec-expectations (3.10.1 )
50
50
diff-lcs (>= 1.2.0 , < 2.0 )
51
- rspec-support (~> 3.9 .0 )
52
- rspec-mocks (3.9.1 )
51
+ rspec-support (~> 3.10 .0 )
52
+ rspec-mocks (3.10.2 )
53
53
diff-lcs (>= 1.2.0 , < 2.0 )
54
- rspec-support (~> 3.9 .0 )
55
- rspec-support (3.9.3 )
54
+ rspec-support (~> 3.10 .0 )
55
+ rspec-support (3.10.2 )
56
56
rubocop (0.66.0 )
57
57
jaro_winkler (~> 1.5.1 )
58
58
parallel (~> 1.10 )
70
70
zeitwerk (2.4.2 )
71
71
72
72
PLATFORMS
73
- ruby
73
+ x86_64-darwin-20
74
74
75
75
DEPENDENCIES
76
76
factory_bot (~> 6.2 )
77
77
patch_ruby !
78
+ pry
78
79
pry-byebug
79
80
rake (~> 13.0.1 )
80
81
rspec (~> 3.6 , >= 3.6.0 )
81
82
rubocop (~> 0.66.0 )
82
83
83
84
BUNDLED WITH
84
- 2.2.14
85
+ 2.2.22
Original file line number Diff line number Diff line change 1
1
SHELL = /bin/bash
2
2
3
3
build :
4
- rubocop -a && \
5
- bundle install
4
+ bundle install && \
5
+ rubocop -a
6
6
7
7
test :
8
8
bundle exec rspec
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ Gem::Specification.new do |s|
38
38
39
39
# Start custom
40
40
s . add_development_dependency 'factory_bot' , '~> 6.2'
41
+ s . add_development_dependency 'pry'
41
42
# End custom
42
43
43
44
end
Original file line number Diff line number Diff line change 74
74
expect ( create_estimate_response . data . mass_g ) . to eq 12_431
75
75
end
76
76
77
+
77
78
it 'supports creating bitcoin estimates with partial information' do
78
- bitcoin_estimate = Patch ::Estimate . create_bitcoin_estimate ( { create_order : false } )
79
+ bitcoin_estimate = Patch ::Estimate . create_bitcoin_estimate ( { } )
79
80
80
81
expect ( bitcoin_estimate . data . type ) . to eq 'bitcoin'
81
82
expect ( bitcoin_estimate . data . mass_g ) . to be >= 2_000
Original file line number Diff line number Diff line change 15
15
# Start custom
16
16
require 'constants'
17
17
require 'factory_bot'
18
+ require 'pry'
18
19
# End custom
19
20
20
21
# Require shared spec examples
You can’t perform that action at this time.
0 commit comments