telesms 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 +4 -4
- data/LICENSE +23 -0
- data/README.md +19 -19
- data/Rakefile +5 -0
- data/lib/telesms/outgoing.rb +1 -1
- data/lib/telesms/version.rb +1 -1
- data/spec/base_spec.rb +1 -1
- data/spec/incoming_spec.rb +1 -1
- data/spec/outgoing_spec.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 78e650d634d86360309d987b8feeb0b043141558
|
|
4
|
+
data.tar.gz: a542753404f624f241afb0271c2569be07de0af6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec9de6e88064a65d741173ed04d5f40e3214a74b4ea5ebef9e3e2d42c1aef2299483f9d55d7e90116d1b1d9cbc1a0b8863a0d3347b1e319c5d8ff7cfaf55d6c3
|
|
7
|
+
data.tar.gz: 182fb19db3450b01a4f2292e29f9a7545f54a5049b0f76fbdc26918e2a31b678584ae8eccd899074c16eb3af8e310602e7adaad2b4bd8197adb18b3f64c29b7a
|
data/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
|
|
3
|
+
The MIT License
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2014 Telefio
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in
|
|
15
|
+
all copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -41,27 +41,27 @@ To get a list of available gateways:
|
|
|
41
41
|
Telesms::Base.gateways
|
|
42
42
|
# => { 'AT&T' => { sms: 'att.com', mms: 'mmode.com'}, ... }
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Configuration
|
|
45
|
+
|
|
46
|
+
Make sure your Rails application has a mail server configured. TeleSMS will use the default configuration of your application.
|
|
47
|
+
|
|
48
|
+
## Contributing
|
|
45
49
|
|
|
46
|
-
|
|
50
|
+
To fetch & test the library for development, do:
|
|
47
51
|
|
|
48
|
-
|
|
52
|
+
$ git clone https://github.com/kalinchuk/telesms.git
|
|
53
|
+
$ cd telesms
|
|
54
|
+
$ bundle
|
|
55
|
+
$ rake spec
|
|
56
|
+
|
|
57
|
+
If you want to contribute, please:
|
|
49
58
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
56
|
-
the following conditions:
|
|
59
|
+
* Fork the project.
|
|
60
|
+
* Write tests for the feature or bug fix.
|
|
61
|
+
* Add your feature or bug fix.
|
|
62
|
+
* Please update CHANGELOG.md
|
|
63
|
+
* Send me a pull request on Github.
|
|
57
64
|
|
|
58
|
-
|
|
59
|
-
included in all copies or substantial portions of the Software.
|
|
65
|
+
## LICENSE:
|
|
60
66
|
|
|
61
|
-
|
|
62
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
63
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
64
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
65
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
66
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
67
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
67
|
+
TeleSMS is Copyright © 2014 Telefio. It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.
|
data/Rakefile
ADDED
data/lib/telesms/outgoing.rb
CHANGED
data/lib/telesms/version.rb
CHANGED
data/spec/base_spec.rb
CHANGED
data/spec/incoming_spec.rb
CHANGED
data/spec/outgoing_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: telesms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Artem Kalinchuk
|
|
@@ -135,7 +135,9 @@ files:
|
|
|
135
135
|
- CHANGELOG.md
|
|
136
136
|
- Gemfile
|
|
137
137
|
- Gemfile.lock
|
|
138
|
+
- LICENSE
|
|
138
139
|
- README.md
|
|
140
|
+
- Rakefile
|
|
139
141
|
- config/gateways.yml
|
|
140
142
|
- lib/telesms.rb
|
|
141
143
|
- lib/telesms/base.rb
|