smsapi-client 1.0.0 → 1.0.1
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 +5 -5
- data/CHANGELOG.md +5 -0
- data/README.md +2 -0
- data/lib/smsapi/client/version.rb +1 -1
- data/lib/smsapi/defaults.rb +2 -1
- data/smsapi-client.gemspec +4 -4
- metadata +3 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 34a014317ed457166775cd5ec9105bf340f8ad9c49422d83195786e3b264b026
|
|
4
|
+
data.tar.gz: 0cc432878ebaf4dfe47f376e606aa01649dfcdb3bfbe647febb2322e01ba261f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fec51348ddc7bf5b6d8b98c44d1e06e68ea70680ae680972e475abd687b03b6f812dde29adccef2c47ef8b2c587ce2161d733a74e69a62c16ddec076c82bb068
|
|
7
|
+
data.tar.gz: 4e3545a0863c65b14f69edf8397bdcc4c05f3b37eebdef4b11e1645ce2c0cd26303ebeb6bffc50cf040e0f97a9f83d469ed438e13b8281e70aa99d68b5f596f8
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.1] - 2019-08-22
|
|
10
|
+
### Changed
|
|
11
|
+
- Added info about old authentication method to README
|
|
12
|
+
- UTF-8 encoding added to default options
|
|
13
|
+
|
|
9
14
|
## [1.0.0] - 2019-08-13
|
|
10
15
|
### Added
|
|
11
16
|
- Changelog.
|
data/README.md
CHANGED
|
@@ -18,6 +18,8 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
$ gem install smsapi-client -v '~> 1.0'
|
|
20
20
|
|
|
21
|
+
If for some reason you wish to use the old authentication method that requires providing login and password, you still can. Just install version `~> 0.3`.
|
|
22
|
+
|
|
21
23
|
## Usage
|
|
22
24
|
|
|
23
25
|
Be sure you have a token. You can obtain it on [SMSAPI.pl](http://smsapi.pl)
|
data/lib/smsapi/defaults.rb
CHANGED
data/smsapi-client.gemspec
CHANGED
|
@@ -5,18 +5,18 @@ require 'smsapi'
|
|
|
5
5
|
require 'smsapi/client/version'
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |spec|
|
|
8
|
-
spec.name =
|
|
8
|
+
spec.name = 'smsapi-client'
|
|
9
9
|
spec.version = Smsapi::VERSION
|
|
10
|
-
spec.authors = ['Alek Niemczyk', 'Michal Musialik'
|
|
10
|
+
spec.authors = ['Alek Niemczyk', 'Michal Musialik']
|
|
11
11
|
spec.email = ['info@rubylogic.pl']
|
|
12
12
|
|
|
13
13
|
spec.summary = 'SMSAPI.pl Ruby client'
|
|
14
14
|
spec.description = 'SMSAPI.pl Ruby client created by Ruby Logic S.C.'
|
|
15
15
|
spec.homepage = 'https://github.com/ruby-logic/smsapi-client'
|
|
16
|
-
spec.license =
|
|
16
|
+
spec.license = 'MIT'
|
|
17
17
|
|
|
18
18
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
19
|
-
spec.bindir =
|
|
19
|
+
spec.bindir = 'exe'
|
|
20
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
21
21
|
spec.require_paths = ['lib']
|
|
22
22
|
|
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smsapi-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alek Niemczyk
|
|
8
8
|
- Michal Musialik
|
|
9
|
-
- Marek Machula
|
|
10
9
|
autorequire:
|
|
11
10
|
bindir: exe
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date: 2019-08-
|
|
12
|
+
date: 2019-08-22 00:00:00.000000000 Z
|
|
14
13
|
dependencies:
|
|
15
14
|
- !ruby/object:Gem::Dependency
|
|
16
15
|
name: bundler
|
|
@@ -87,8 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
86
|
- !ruby/object:Gem::Version
|
|
88
87
|
version: '0'
|
|
89
88
|
requirements: []
|
|
90
|
-
|
|
91
|
-
rubygems_version: 2.6.14.4
|
|
89
|
+
rubygems_version: 3.0.3
|
|
92
90
|
signing_key:
|
|
93
91
|
specification_version: 4
|
|
94
92
|
summary: SMSAPI.pl Ruby client
|