sms-easy 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -14
- data/lib/sms/easy/version.rb +1 -1
- data/sms-easy.gemspec +2 -3
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6193e41ab1a36d2ba7504db5e3d00bbb2f372c65
|
4
|
+
data.tar.gz: ccee067ec9d968aeeb736a6a6e4d3179302762d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d9e88f9b125f8bf0cd6ea872e0a66b4c2cf300eb940f081fce6e6403ad605496f7834b7e4f221007c1cc2da74a85a0b92fde31b1c7707eccdd50a9766ae19af
|
7
|
+
data.tar.gz: cdc8f73fc1c4f438679a1ab957f18984e934dc338587ba3ab71c6091e8104269affeea478c4555c93260b86152c7a40400790f20e282a2f489ea75cf787b8798
|
data/README.md
CHANGED
@@ -7,13 +7,13 @@ This is largely based on Brendan Lim's sms-fu for older apps. (https://github.co
|
|
7
7
|
Rails 4 integration is supported, though not required. Additionally, SMSEasy works perfectly well with background job processing gems such as Sidekiq and delayed_job.
|
8
8
|
|
9
9
|
|
10
|
-
## Supported Carriers (US & International):
|
10
|
+
## Supported Carriers (US & International):
|
11
11
|
|
12
|
-
Alltel, Ameritech, AT&T, Bell Atlantic, BellSouth Mobility, Beeline(UA), BlueSkyFrog,
|
13
|
-
Boost Mobile, BPL Mobile, Cellular South, Claro (Brazil, Nicaragua), Comcast, Du,
|
14
|
-
E-Plus, Etisalat, Fido, kajeet, Mobinil, Mobitel, Movistar, Metro PCS, O2, Orange,
|
15
|
-
Powertel, PSC Wireless, Qwest, Rogers, Southern Link, Sprint, Suncom,
|
16
|
-
T-Mobile (US/UK/Germany), Telefonica, Tracfone, Virgin Mobile, Verizon Wireless,
|
12
|
+
Alltel, Ameritech, AT&T, Bell Atlantic, BellSouth Mobility, Beeline(UA), BlueSkyFrog,
|
13
|
+
Boost Mobile, BPL Mobile, Cellular South, Claro (Brazil, Nicaragua), Comcast, Du,
|
14
|
+
E-Plus, Etisalat, Fido, kajeet, Mobinil, Mobitel, Movistar, Metro PCS, O2, Orange,
|
15
|
+
Powertel, PSC Wireless, Qwest, Rogers, Southern Link, Sprint, Suncom,
|
16
|
+
T-Mobile (US/UK/Germany), Telefonica, Tracfone, Virgin Mobile, Verizon Wireless,
|
17
17
|
Vodafone (UK, Egypt, Italy, Japan, Spain), and many more ...
|
18
18
|
|
19
19
|
Some International carriers require that their users subscribe to an Email to SMS
|
@@ -23,24 +23,24 @@ limitation. Some of these carriers are include, Mobitel, Etisalat, T-Mobile (Ne
|
|
23
23
|
|
24
24
|
## Requirements
|
25
25
|
|
26
|
-
* SMSEasy requires the use of a recent version of 'action\_mailer'. Unlike the older sms-fu gem,
|
26
|
+
* SMSEasy requires the use of a recent version of 'action\_mailer'. Unlike the older sms-fu gem, **_only_ action\_mailer 4/5 is supported**. If you have an older app, please try one of the older variants that supports action\_mailer 3 and/or pony email agents.
|
27
27
|
|
28
28
|
|
29
29
|
## Setup Instructions
|
30
30
|
|
31
31
|
Install the sms-easy gem:
|
32
|
-
|
32
|
+
|
33
33
|
gem install sms-easy
|
34
34
|
|
35
35
|
|
36
|
-
|
36
|
+
|
37
37
|
|
38
38
|
## Numbers and Carriers
|
39
39
|
|
40
40
|
* You'll need 10-digit phone numbers, stripped of any non-numeric characters.
|
41
41
|
* As SMSEasy relies on free carrier-specific email-to-SMS gateways, you'll also need to know the carrier of the receiving phone number.
|
42
42
|
* Here are some of the default carrier values:
|
43
|
-
|
43
|
+
|
44
44
|
Alltel Wireless => "alltel"
|
45
45
|
AT&T/Cingular => "at&t"
|
46
46
|
Boost Mobile => "boost"
|
@@ -107,19 +107,19 @@ Install the sms-easy gem:
|
|
107
107
|
## View Helpers (Rails)
|
108
108
|
|
109
109
|
Include view helpers in application_helper.rb:
|
110
|
-
|
110
|
+
|
111
111
|
module ApplicationHelper
|
112
112
|
include SMSEasyHelper
|
113
113
|
end
|
114
114
|
|
115
115
|
Retrieve a collection of all carriers
|
116
|
-
|
116
|
+
|
117
117
|
<%= carrier_collection %>
|
118
118
|
|
119
119
|
Display a select box with mobile carriers
|
120
120
|
|
121
121
|
<%= carrier_select %>
|
122
|
-
|
122
|
+
|
123
123
|
Display a custom select box with mobile carriers
|
124
124
|
|
125
125
|
<%= carrier_select('user[carrier_name]', "Please choose a carrier") %>
|
@@ -134,4 +134,4 @@ I want to thank the following individuals with their help with adding some patch
|
|
134
134
|
|
135
135
|
Copyright (c) 2010 Brendan G. Lim, Intridea, Inc., released under the MIT license
|
136
136
|
|
137
|
-
Additional modifications, updates, refactorings etc. by Preston Lee.
|
137
|
+
Additional modifications, updates, refactorings etc. by Preston Lee 2013-2017.
|
data/lib/sms/easy/version.rb
CHANGED
data/sms-easy.gemspec
CHANGED
@@ -20,8 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.add_dependency "actionmailer", '>= 4.2.5' # Already depends on minitest, so we don't need to add it. :)
|
22
22
|
|
23
|
-
spec.add_development_dependency 'bundler', '>= 1.
|
24
|
-
spec.add_development_dependency 'rake', '
|
23
|
+
spec.add_development_dependency 'bundler', '>= 1.14.6'
|
24
|
+
spec.add_development_dependency 'rake', '>= 12.0.0'
|
25
25
|
|
26
26
|
end
|
27
|
-
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sms-easy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brendan G. Lim
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2017-05-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: actionmailer
|
@@ -32,28 +32,28 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - ">="
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 1.
|
35
|
+
version: 1.14.6
|
36
36
|
type: :development
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.
|
42
|
+
version: 1.14.6
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: rake
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- -
|
47
|
+
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
49
|
+
version: 12.0.0
|
50
50
|
type: :development
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
|
-
- -
|
54
|
+
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
56
|
+
version: 12.0.0
|
57
57
|
description: SMSEasy allows you to send text messages to a mobile recipient for free. It
|
58
58
|
leverages ActionMailer for delivery of text messages through e-mail. Based on the
|
59
59
|
Brendan Lim's sms-easy.
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
version: '0'
|
100
100
|
requirements: []
|
101
101
|
rubyforge_project:
|
102
|
-
rubygems_version: 2.
|
102
|
+
rubygems_version: 2.6.12
|
103
103
|
signing_key:
|
104
104
|
specification_version: 4
|
105
105
|
summary: SMSEasy allows you to send text messages to a mobile recipient for free.
|