Skip to content

Commit 49bff2d

Browse files
authored
Merge pull request #127 from codegram/minor-fixes
Minor fixes: Fix warnings, and pry-byebug to dev Gemfile and tweak rubocop execution
2 parents 9d8bd04 + 7969004 commit 49bff2d

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* [#122](https://github.com/codegram/hyperclient/pull/122): Improve error message when server returns invalid data - [@ivoanjo](https://github.com/ivoanjo).
44
* [#125](https://github.com/codegram/hyperclient/pull/125): Add table of contents to readme and add note asking users to add their projects to the wiki - [@ivoanjo](https://github.com/ivoanjo).
5+
* [#127](https://github.com/codegram/hyperclient/pull/127): Minor fixes: Fix warnings, and pry-byebug to dev Gemfile and tweak rubocop execution - [@ivoanjo](https://github.com/ivoanjo).
56
* Your contribution here.
67

78
### 0.8.5 (July 5, 2017)

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ group :development do
88
gem 'guard-minitest'
99
gem 'guard-spinach'
1010
gem 'pry'
11+
gem 'pry-byebug', platforms: :ruby
1112
end
1213

1314
group :development, :test do

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ end
3838
require 'rubocop/rake_task'
3939
RuboCop::RakeTask.new(:rubocop)
4040

41-
task default: [:rubocop, :test, :spinach]
41+
task default: [:test, :spinach, :rubocop]

lib/hyperclient/entry_point.rb

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ def initialize(url, &_block)
4141
@options = { async: true }
4242
@connection = nil
4343
@resource = nil
44+
@key = nil
45+
@uri_variables = nil
4446
yield self if block_given?
4547
end
4648

0 commit comments

Comments
 (0)