Skip to content

Commit 964da46

Browse files
authored
Merge pull request #11 from marcinx/master
update dependency
2 parents 01fa31c + 8e6f14a commit 964da46

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/examples/example.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
if response.code != 200
3131
# something went wrong
32-
print "Received non-OK status code from server."
32+
print "Received non-OK status code from server." + "\n"
3333
end
3434

3535
# do something with the HLR data
@@ -43,7 +43,7 @@
4343

4444
if response.code != 200
4545
# something went wrong
46-
print "Received non-OK status code from server."
46+
print "Received non-OK status code from server." + "\n"
4747
end
4848

4949
# do something with the NT data
@@ -57,7 +57,7 @@
5757

5858
if response.code != 200
5959
# something went wrong
60-
print "Received non-OK status code from server."
60+
print "Received non-OK status code from server." + "\n"
6161
end
6262

6363
# do something with the NT data

src/ruby_hlr_client.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
1414
s.required_ruby_version = '>= 2.0.0'
1515

1616
s.add_runtime_dependency 'rest-client', '~> 2.1', '>= 2.1.0'
17-
s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.3'
17+
s.add_runtime_dependency 'json', '~> 2.3', '>= 2.3.0'
1818

1919
s.files = `git ls-files`.split("\n")
2020
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

0 commit comments

Comments
 (0)