rfetion 0.4.8 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +2 -2
- data/Rakefile +20 -0
- data/VERSION +1 -1
- data/lib/rfetion/contact.rb +7 -7
- data/lib/rfetion/fetion.rb +260 -292
- data/lib/rfetion/sipc_message.rb +104 -0
- data/lib/rfetion.rb +3 -1
- data/rfetion.gemspec +13 -3
- data/spec/rfetion/fetion_spec.rb +369 -0
- data/spec/rfetion/sipc_message_spec.rb +93 -0
- data/spec/spec.opts +8 -0
- data/spec/spec_helper.rb +8 -0
- metadata +11 -4
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rfetion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Huang
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-
|
12
|
+
date: 2010-05-09 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -50,7 +50,12 @@ files:
|
|
50
50
|
- lib/rfetion/command.rb
|
51
51
|
- lib/rfetion/contact.rb
|
52
52
|
- lib/rfetion/fetion.rb
|
53
|
+
- lib/rfetion/sipc_message.rb
|
53
54
|
- rfetion.gemspec
|
55
|
+
- spec/rfetion/fetion_spec.rb
|
56
|
+
- spec/rfetion/sipc_message_spec.rb
|
57
|
+
- spec/spec.opts
|
58
|
+
- spec/spec_helper.rb
|
54
59
|
has_rdoc: true
|
55
60
|
homepage: http://github.com/flyerhzm/rfetion
|
56
61
|
licenses: []
|
@@ -79,5 +84,7 @@ rubygems_version: 1.3.5
|
|
79
84
|
signing_key:
|
80
85
|
specification_version: 3
|
81
86
|
summary: rfetion is a ruby gem for China Mobile fetion service that you can send SMS free.
|
82
|
-
test_files:
|
83
|
-
|
87
|
+
test_files:
|
88
|
+
- spec/rfetion/fetion_spec.rb
|
89
|
+
- spec/rfetion/sipc_message_spec.rb
|
90
|
+
- spec/spec_helper.rb
|