bobes-textmagic 0.2.3 → 0.3.0
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.
- data/README.rdoc +61 -48
- data/Rakefile +32 -0
- data/VERSION.yml +2 -2
- data/lib/api.rb +114 -100
- data/lib/error.rb +2 -2
- data/lib/response.rb +47 -124
- data/test/test_api.rb +54 -98
- data/test/test_response.rb +141 -93
- data/textmagic.gemspec +4 -5
- metadata +4 -4
data/textmagic.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{textmagic}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "0.3.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Vladimir Bobes Tuzinsky"]
|
9
|
-
s.date = %q{2009-05-
|
9
|
+
s.date = %q{2009-05-28}
|
10
10
|
s.email = %q{vladimir.tuzinsky@gmail.com}
|
11
11
|
s.extra_rdoc_files = [
|
12
12
|
"LICENSE",
|
@@ -35,12 +35,11 @@ Gem::Specification.new do |s|
|
|
35
35
|
"test/test_validation.rb",
|
36
36
|
"textmagic.gemspec"
|
37
37
|
]
|
38
|
-
s.has_rdoc = true
|
39
38
|
s.homepage = %q{http://github.com/bobes/textmagic}
|
40
39
|
s.rdoc_options = ["--charset=UTF-8"]
|
41
40
|
s.require_paths = ["lib"]
|
42
41
|
s.rubyforge_project = %q{textmagic}
|
43
|
-
s.rubygems_version = %q{1.3.
|
42
|
+
s.rubygems_version = %q{1.3.3}
|
44
43
|
s.summary = %q{Ruby interface to the TextMagic's Bulk SMS Gateway}
|
45
44
|
s.test_files = [
|
46
45
|
"test/test_api.rb",
|
@@ -54,7 +53,7 @@ Gem::Specification.new do |s|
|
|
54
53
|
|
55
54
|
if s.respond_to? :specification_version then
|
56
55
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
57
|
-
s.specification_version =
|
56
|
+
s.specification_version = 3
|
58
57
|
|
59
58
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
60
59
|
s.add_runtime_dependency(%q<httparty>, [">= 0.4.3"])
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bobes-textmagic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladimir Bobes Tuzinsky
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-05-
|
12
|
+
date: 2009-05-28 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -83,7 +83,7 @@ files:
|
|
83
83
|
- test/test_response.rb
|
84
84
|
- test/test_validation.rb
|
85
85
|
- textmagic.gemspec
|
86
|
-
has_rdoc:
|
86
|
+
has_rdoc: false
|
87
87
|
homepage: http://github.com/bobes/textmagic
|
88
88
|
post_install_message:
|
89
89
|
rdoc_options:
|
@@ -107,7 +107,7 @@ requirements: []
|
|
107
107
|
rubyforge_project: textmagic
|
108
108
|
rubygems_version: 1.2.0
|
109
109
|
signing_key:
|
110
|
-
specification_version:
|
110
|
+
specification_version: 3
|
111
111
|
summary: Ruby interface to the TextMagic's Bulk SMS Gateway
|
112
112
|
test_files:
|
113
113
|
- test/test_api.rb
|