Skip to content

Commit 2be2667

Browse files
authored
Merge pull request #2 from seven-io/ruby3
make compatible with ruby v3.x
2 parents 0a9af5c + 41166e0 commit 2be2667

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.idea/ruby-client.iml

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
![](https://www.sms77.io/wp-content/uploads/2019/07/sms77-Logo-400x79.png "sms77 Logo")
1+
![](https://www.seven.io/wp-content/uploads/Logo.svg "seven Logo")
22

3-
# Ruby Client for the [sms77 SMS Gateway API](https://www.sms77.io/)
3+
# Ruby Client for the [seven SMS Gateway API](https://www.seven.io/)
44
This gem requires Ruby >= 2.6.0 < 3.
55

66
## Installation
@@ -36,6 +36,6 @@ Setting ```SMS77_TEST_HTTP=1``` enables live testing with actual API requests.
3636

3737
##### Support
3838

39-
Need help? Feel free to [contact us](https://www.sms77.io/en/company/contact/).
39+
Need help? Feel free to [contact us](https://www.seven.io/en/company/contact/).
4040

4141
[![MIT](https://img.shields.io/badge/License-MIT-teal.svg)](LICENSE)

lib/sms77/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Sms77
4-
VERSION = '0.4.0'
4+
VERSION = '0.5.0'
55
end

sms77.gemspec

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Gem::Specification.new do |spec|
88
spec.add_development_dependency 'rake', '~> 13.0'
99
spec.add_development_dependency 'rspec', '~> 3.9'
1010
spec.add_runtime_dependency 'faraday', '~> 1.1'
11-
spec.author = 'sms77 e.K.'
12-
spec.description = 'Send SMS & text-to-speech messages via the sms77 SMS Gateway.'
13-
spec.email = 'support@sms77.io'
11+
spec.author = 'seven communications GmbH & Co. KG'
12+
spec.description = 'Send SMS & text-to-speech messages via the seven SMS Gateway.'
13+
spec.email = 'support@seven.io'
1414
spec.files = `git ls-files`.split("\n")
15-
spec.homepage = 'https://github.com/sms77io/ruby-client'
15+
spec.homepage = 'https://github.com/seven-io/ruby-client'
1616
spec.license = 'MIT'
1717
spec.name = 'sms77'
18-
spec.required_ruby_version = '>= 2.6.0', '< 3'
19-
spec.summary = 'Official API Client for the sms77 SMS Gateway'
18+
spec.required_ruby_version = '>= 2.6.0'
19+
spec.summary = 'Official API Client for the seven SMS Gateway'
2020
spec.test_files = Dir['spec/**/*']
2121
spec.version = Sms77::VERSION
2222
end

spec/sms77/instance_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# frozen_string_literal: true
22

3+
#noinspection RubyResolve
34
require 'spec_helper'
45
require 'sms77/resource'
56

7+
#noinspection RubyResolve
68
RSpec.describe Sms77, 'instance' do
79
helper = Helper.new(Sms77::Resource)
810

0 commit comments

Comments
 (0)