messagebird-texter 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc07ab86ed3cb2975eac7d34b645179ed9ba5ee1
4
- data.tar.gz: c17963495165769db57330e4d5fe667612aa304b
3
+ metadata.gz: 26616473bf969c66953ff890f577dbb0a2e664cf
4
+ data.tar.gz: c4f3c4701800d8ab692dbef44e592bbbf65a791e
5
5
  SHA512:
6
- metadata.gz: eb0554ccb0a830bbbd1a0f9066b9cef9c58873336e8b6fb7fc5af36c9fd3d7d6772c10c8104e95f190cdbfa679931c189e1a364c1f614d6a8bf9f07071409c97
7
- data.tar.gz: 5a127efb3cd3bb2d99e5c372308ff3e04126d97a52bf655fee288f9d999ed3410492d23a91df69a865ac0bf8937623698ed4c87be0bbd28047fb60d8c0557294
6
+ metadata.gz: 1c4b8a8209a5d6ba2132562f8e7aa4758f6067e7e24661fda419cda4af1b272f5aeddbe41da50eec3ad66e6dd44fbad9cc5faa6717d60b3a7e7c4877cf37aa56
7
+ data.tar.gz: cc4a21074eab14fe4e72df75b1793b455a9bb2c3bfd6791805af7583d4046ace7fb6cec63f12aff6bd758d10ff9e98538055e3f6660e840f93f41a8e73456fcc
data/Gemfile.lock CHANGED
@@ -1,9 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- messagebird-texter (0.1.0)
4
+ messagebird-texter (0.1.1)
5
5
  action-texter
6
- phony (~> 2.12)
7
6
 
8
7
  GEM
9
8
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -153,17 +153,20 @@ $ gem update messagebird-texter
153
153
 
154
154
  Changelog
155
155
  ---------
156
-
157
- ###0.0.1 (2015-12-09)
158
- Intilial release
159
-
160
- ###0.0.2 (2015-12-10)
161
- Minor fixes, readme update
156
+ ###0.1.1 (2015-12-11)
157
+ - remove phony gem fom dependecies
162
158
 
163
159
  ###0.1.0 (2015-12-10)
164
160
  - Completly remove validators, api handles errors
165
161
  - readme update
166
162
 
163
+ ###0.0.2 (2015-12-10)
164
+ - Minor fixes, readme update
165
+
166
+ ###0.0.1 (2015-12-09)
167
+ - Intilial release
168
+ -
169
+
167
170
  ## Contributing
168
171
 
169
172
  Bug reports and pull requests are welcome on GitHub at https://github.com/HitFox/messagebird-sms. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -7,7 +7,7 @@ module MessagebirdTexter
7
7
  module VERSION
8
8
  MAJOR = 0
9
9
  MINOR = 1
10
- TINY = 0
10
+ TINY = 1
11
11
  PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['oliver.zeyen@hitfoxgroup.com']
11
11
 
12
12
  spec.summary = 'Wrapper for the Messagebird SMS Gateway API.'
13
- spec.description = 'Send text messages/sms by means of the HTTP protocol with the service of https://www.messagebird.com.'
14
- spec.homepage = 'https://github.com/HitFox/messagebird-sms'
13
+ spec.description = 'Create ActionMailer-like notifiers and send messages via the Messagebird REST API'
14
+ spec.homepage = 'https://github.com/HitFox/messagebird-texter'
15
15
  spec.license = 'MIT'
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -26,10 +26,8 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency 'pry'
27
27
 
28
28
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0')
29
- spec.add_runtime_dependency 'phony', '~> 2.12'
30
29
  spec.add_runtime_dependency 'action-texter'
31
30
  else
32
- spec.add_dependency 'phony', '~> 2.15'
33
31
  spec.add_dependency 'action-texter'
34
32
  end
35
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: messagebird-texter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - oliverzeyen
@@ -80,20 +80,6 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: phony
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '2.12'
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '2.12'
97
83
  - !ruby/object:Gem::Dependency
98
84
  name: action-texter
99
85
  requirement: !ruby/object:Gem::Requirement
@@ -108,8 +94,8 @@ dependencies:
108
94
  - - ">="
109
95
  - !ruby/object:Gem::Version
110
96
  version: '0'
111
- description: Send text messages/sms by means of the HTTP protocol with the service
112
- of https://www.messagebird.com.
97
+ description: Create ActionMailer-like notifiers and send messages via the Messagebird
98
+ REST API
113
99
  email:
114
100
  - oliver.zeyen@hitfoxgroup.com
115
101
  executables: []
@@ -138,7 +124,7 @@ files:
138
124
  - lib/messagebird_texter/response/error.rb
139
125
  - lib/messagebird_texter/version.rb
140
126
  - messagebird-sms.gemspec
141
- homepage: https://github.com/HitFox/messagebird-sms
127
+ homepage: https://github.com/HitFox/messagebird-texter
142
128
  licenses:
143
129
  - MIT
144
130
  metadata: {}