simplesms 1.0.2
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 +7 -0
- data/.gitignore +9 -0
- data/Gemfile +4 -0
- data/README.md +41 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/simplesms.rb +34 -0
- data/lib/simplesms/version.rb +3 -0
- data/simplesms.gemspec +30 -0
- metadata +83 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 57db2f4134cfce833daf541dafe12b0b1591b00e
|
4
|
+
data.tar.gz: a5619a3c1da34e62e582ceec569d0a461dc44230
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a9001211b4229024c908c9fa37ba2eaa63ec45bd42855824ea3cce9551e3139a6739a7097896a7bff08d925b6d5759b3b88a565948bd29144f201dad39c52222
|
7
|
+
data.tar.gz: 3594d10e35e4b45d5474f15a34355f4491ab3d81ac9b5eb10dcf4802b4251b870602cabdda86359f64b23adcb44dac54c37b3a4ef0472d8c5bd4c78c63326aec
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# SimpleSMS
|
2
|
+
|
3
|
+
Welcome to the SimpleSMS gem! The simpliest and cheapest way to send SMS messages from your Heroku app!
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'simplesms'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself with:
|
18
|
+
|
19
|
+
$ gem install simplesms
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
In Heroku select a plan for the Simple SMS addon.
|
24
|
+
|
25
|
+
When you are ready to send a SMS text simply call:
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
Simplesms::Text.new(to: {number_to_send_sms_including_country_code}, message: {message_to_send}).send
|
29
|
+
```
|
30
|
+
|
31
|
+
Note: remember to include the country code in the to number.
|
32
|
+
|
33
|
+
## Example
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
Simplesms::Text.new(to: "15634558345, message: "Hello from SimpleSMS!").send
|
37
|
+
```
|
38
|
+
|
39
|
+
Questions? Feel free to reach out to tom@simplesms.io!
|
40
|
+
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "simplesms"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/lib/simplesms.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require "simplesms/version"
|
2
|
+
|
3
|
+
module Simplesms
|
4
|
+
class Text
|
5
|
+
def initialize(to: to_number_in, message: message_to_send_in)
|
6
|
+
@to = to
|
7
|
+
@message = message
|
8
|
+
end
|
9
|
+
|
10
|
+
def send
|
11
|
+
begin
|
12
|
+
url = ENV["SIMPLESMSIO_URL"]
|
13
|
+
|
14
|
+
body = {
|
15
|
+
"to" => @to,
|
16
|
+
"message" => @message
|
17
|
+
}
|
18
|
+
|
19
|
+
uri = URI.parse(url)
|
20
|
+
|
21
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
22
|
+
|
23
|
+
request = Net::HTTP::Post.new(uri.request_uri)
|
24
|
+
request.set_form_data(body)
|
25
|
+
|
26
|
+
response = http.request(request)
|
27
|
+
rescue
|
28
|
+
response = {"success": false, "message": "Error establishing http connection"}
|
29
|
+
end
|
30
|
+
response
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/simplesms.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'simplesms/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "simplesms"
|
8
|
+
spec.version = Simplesms::VERSION
|
9
|
+
spec.authors = ["Tom Hammond"]
|
10
|
+
spec.email = ["tom@simplesms.io"]
|
11
|
+
|
12
|
+
spec.summary = %q{Easily add SMS to your project by integrating the SimpleSMS Heroku Addon into your app.}
|
13
|
+
spec.homepage = ""
|
14
|
+
|
15
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
16
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
17
|
+
if spec.respond_to?(:metadata)
|
18
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
19
|
+
else
|
20
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
21
|
+
end
|
22
|
+
|
23
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
|
28
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
29
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: simplesms
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tom Hammond
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-07-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- tom@simplesms.io
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- README.md
|
51
|
+
- Rakefile
|
52
|
+
- bin/console
|
53
|
+
- bin/setup
|
54
|
+
- lib/simplesms.rb
|
55
|
+
- lib/simplesms/version.rb
|
56
|
+
- simplesms.gemspec
|
57
|
+
homepage: ''
|
58
|
+
licenses: []
|
59
|
+
metadata:
|
60
|
+
allowed_push_host: https://rubygems.org
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 2.5.1
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: Easily add SMS to your project by integrating the SimpleSMS Heroku Addon
|
81
|
+
into your app.
|
82
|
+
test_files: []
|
83
|
+
has_rdoc:
|