wesender 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16f21055233284a8a186b1824dc6c422451bff7928f6f954731f3c87aee6de49
4
- data.tar.gz: d82816b4ff3a7f953313e3191bdea92da1eb1a6c90c0a9a27a0f6e5a8966264d
3
+ metadata.gz: b1a20421897d2cc97e0f5f0c87a8497cf55fbf0c5ceb5406c8e276ef760f7f5b
4
+ data.tar.gz: baca439d2d975d6574fc4e7d2ef24a00c86d37e41a742be77615ab1a2b12f77a
5
5
  SHA512:
6
- metadata.gz: dcdea695e4110e926a8eba1a5484aeb2cc2ea8e5dc15211ccf7b809785c6a0ded49517ab713ec0efc5369d852fb1755917f0e3b3843a51845034733f2767a998
7
- data.tar.gz: 8e416ef0084dcbc45ebfff84bef43382b65c3902e980195e38e06f34c3b4d9cff4d48d7d7ee69e5231670ab3046860ccc9c71598813cc35f57082202419b86be
6
+ metadata.gz: 582b8018adfd164ecd0c91b3d249dea42b54d5e0f59837ba4e242a7a4789f0b5c34105a5c86191f339b45232813f3a967316bafe3f7f156a00a8835d1a0807cb
7
+ data.tar.gz: 454c18a4d8efe85ea53588bc2bf11a97ae8c97ac602e870f4db66de8899b2995f44e99b018e83b28130a2ef5f852f47249c83fdf76d214134b44bc0a8f6f3dd0
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
@@ -0,0 +1,41 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ wesender (0.0.3)
5
+ httparty (~> 0.13.7)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ diff-lcs (1.3)
11
+ httparty (0.13.7)
12
+ json (~> 1.8)
13
+ multi_xml (>= 0.5.2)
14
+ json (1.8.6)
15
+ multi_xml (0.6.0)
16
+ rake (10.5.0)
17
+ rspec (3.9.0)
18
+ rspec-core (~> 3.9.0)
19
+ rspec-expectations (~> 3.9.0)
20
+ rspec-mocks (~> 3.9.0)
21
+ rspec-core (3.9.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-expectations (3.9.0)
24
+ diff-lcs (>= 1.2.0, < 2.0)
25
+ rspec-support (~> 3.9.0)
26
+ rspec-mocks (3.9.0)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.9.0)
29
+ rspec-support (3.9.0)
30
+
31
+ PLATFORMS
32
+ ruby
33
+
34
+ DEPENDENCIES
35
+ bundler (~> 2.0)
36
+ rake (~> 10.0)
37
+ rspec (~> 3.5)
38
+ wesender!
39
+
40
+ BUNDLED WITH
41
+ 2.0.2
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 JM Cabanga by <Digital Factory Angola>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Wesender - RubyOnRails application integration library
2
2
  ## Installation
3
3
 
4
+ [Oficial doc](https://rubygems.org/gems/wesender).
4
5
  Add this line to your application's Gemfile:
5
6
 
6
7
  ```ruby
@@ -18,12 +18,10 @@ module Wesender
18
18
  )
19
19
  response.parsed_response
20
20
  end
21
-
22
21
  end
23
22
 
24
23
  class WesenderSMS
25
24
  include Wesender
26
-
27
25
  def initialize( api_key = nil )
28
26
  @api_key = api_key.nil? ? ENV["WESENDER_API_KEY"] : api_key
29
27
  super()
@@ -1,3 +1,3 @@
1
1
  module Wesender
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
Binary file
Binary file
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["cabanga"]
9
9
  spec.email = ["manucabanga@gmail.com"]
10
10
 
11
- spec.summary = %q{Write a short summary, because RubyGems requires one.}
12
- spec.description = %q{Write a longer description or delete this line.}
11
+ spec.summary = %q{Wesender}
12
+ spec.description = %q{Wesender - RubyOnRails application integration library}
13
13
  spec.homepage = "https://github.com/Digital-Factory-Angola/wesender-rails-sdk"
14
14
  spec.license = "MIT"
15
15
  spec.metadata["homepage_uri"] = spec.homepage
@@ -26,4 +26,6 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency "bundler", "~> 2.0"
27
27
  spec.add_development_dependency "rake", "~> 10.0"
28
28
  spec.add_dependency 'httparty', '~> 0.13.7'
29
+ spec.add_development_dependency "rspec", "~> 3.5"
30
+
29
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wesender
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - cabanga
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-19 00:00:00.000000000 Z
11
+ date: 2019-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,7 +52,21 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.13.7
55
- description: Write a longer description or delete this line.
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.5'
69
+ description: Wesender - RubyOnRails application integration library
56
70
  email:
57
71
  - manucabanga@gmail.com
58
72
  executables: []
@@ -60,8 +74,11 @@ extensions: []
60
74
  extra_rdoc_files: []
61
75
  files:
62
76
  - ".gitignore"
77
+ - ".rspec"
63
78
  - CODE_OF_CONDUCT.md
64
79
  - Gemfile
80
+ - Gemfile.lock
81
+ - LICENSE
65
82
  - LICENSE.txt
66
83
  - README.md
67
84
  - Rakefile
@@ -69,6 +86,8 @@ files:
69
86
  - bin/setup
70
87
  - lib/wesender.rb
71
88
  - lib/wesender/version.rb
89
+ - wesender-0.0.1.gem
90
+ - wesender-0.0.2.gem
72
91
  - wesender.gemspec
73
92
  homepage: https://github.com/Digital-Factory-Angola/wesender-rails-sdk
74
93
  licenses:
@@ -94,5 +113,5 @@ requirements: []
94
113
  rubygems_version: 3.0.6
95
114
  signing_key:
96
115
  specification_version: 4
97
- summary: Write a short summary, because RubyGems requires one.
116
+ summary: Wesender
98
117
  test_files: []