smsapi-client 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 41a0a8f58f3c352ae1e984482d77f060b7c1bb09
4
- data.tar.gz: 8b72242c91bccad928fc231d121ac0169a997f62
2
+ SHA256:
3
+ metadata.gz: 34a014317ed457166775cd5ec9105bf340f8ad9c49422d83195786e3b264b026
4
+ data.tar.gz: 0cc432878ebaf4dfe47f376e606aa01649dfcdb3bfbe647febb2322e01ba261f
5
5
  SHA512:
6
- metadata.gz: '0955a4561baec7b30673927e05f2e17cc88b69fd2b6a87a61fec6d7aa7d27b8cbd764736454e0674eefbb64922e107cd617fc8a434ad32ea12347f338a0429ea'
7
- data.tar.gz: ba4b125e3893c224839a7564bb18891a184d11596395aa6d3f5bc9b53b633f3b28cbdea9d51d2879022cb82489202d6d447997f467fc92748d6bb74324cd74d3
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)
@@ -1,3 +1,3 @@
1
1
  module Smsapi
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
@@ -2,7 +2,8 @@ module Smsapi::Defaults
2
2
  def default_options
3
3
  {
4
4
  from: 'eco',
5
- test: '0'
5
+ test: '0',
6
+ encoding: 'utf-8'
6
7
  }
7
8
  end
8
9
  end
@@ -5,18 +5,18 @@ require 'smsapi'
5
5
  require 'smsapi/client/version'
6
6
 
7
7
  Gem::Specification.new do |spec|
8
- spec.name = "smsapi-client"
8
+ spec.name = 'smsapi-client'
9
9
  spec.version = Smsapi::VERSION
10
- spec.authors = ['Alek Niemczyk', 'Michal Musialik', 'Marek Machula']
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 = "MIT"
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 = "exe"
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.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-13 00:00:00.000000000 Z
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
- rubyforge_project:
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