ruby-smpp 0.1.3.pre1 → 0.1.3
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/Rakefile +1 -2
- data/VERSION +1 -1
- data/ruby-smpp.gemspec +2 -5
- metadata +3 -13
data/Rakefile
CHANGED
|
@@ -4,6 +4,7 @@ require 'rake'
|
|
|
4
4
|
begin
|
|
5
5
|
require 'jeweler'
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
7
8
|
gem.name = "ruby-smpp"
|
|
8
9
|
gem.summary = %Q{Ruby implementation of the SMPP protocol, based on EventMachine.}
|
|
9
10
|
gem.description = gem.summary + " SMPP is a protocol that allows ordinary people outside the mobile network to exchange SMS messages directly with mobile operators."
|
|
@@ -15,8 +16,6 @@ begin
|
|
|
15
16
|
gem.extra_rdoc_files = ["README.rdoc", "CHANGELOG", "CONTRIBUTORS.txt"]
|
|
16
17
|
|
|
17
18
|
gem.add_dependency "eventmachine", ">= 0.10.0"
|
|
18
|
-
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
19
|
-
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
20
19
|
end
|
|
21
20
|
Jeweler::GemcutterTasks.new
|
|
22
21
|
rescue LoadError
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.3
|
|
1
|
+
0.1.3
|
data/ruby-smpp.gemspec
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ruby-smpp}
|
|
8
|
-
s.version = "0.1.3
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Ray Krueger", "August Z. Flatby"]
|
|
12
12
|
s.date = %q{2010-02-05}
|
|
13
13
|
s.description = %q{Ruby implementation of the SMPP protocol, based on EventMachine. SMPP is a protocol that allows ordinary people outside the mobile network to exchange SMS messages directly with mobile operators.}
|
|
@@ -71,14 +71,11 @@ Gem::Specification.new do |s|
|
|
|
71
71
|
|
|
72
72
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
73
73
|
s.add_runtime_dependency(%q<eventmachine>, [">= 0.10.0"])
|
|
74
|
-
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
75
74
|
else
|
|
76
75
|
s.add_dependency(%q<eventmachine>, [">= 0.10.0"])
|
|
77
|
-
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
78
76
|
end
|
|
79
77
|
else
|
|
80
78
|
s.add_dependency(%q<eventmachine>, [">= 0.10.0"])
|
|
81
|
-
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
82
79
|
end
|
|
83
80
|
end
|
|
84
81
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-smpp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.3
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ray Krueger
|
|
@@ -23,16 +23,6 @@ dependencies:
|
|
|
23
23
|
- !ruby/object:Gem::Version
|
|
24
24
|
version: 0.10.0
|
|
25
25
|
version:
|
|
26
|
-
- !ruby/object:Gem::Dependency
|
|
27
|
-
name: thoughtbot-shoulda
|
|
28
|
-
type: :development
|
|
29
|
-
version_requirement:
|
|
30
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
31
|
-
requirements:
|
|
32
|
-
- - ">="
|
|
33
|
-
- !ruby/object:Gem::Version
|
|
34
|
-
version: "0"
|
|
35
|
-
version:
|
|
36
26
|
description: Ruby implementation of the SMPP protocol, based on EventMachine. SMPP is a protocol that allows ordinary people outside the mobile network to exchange SMS messages directly with mobile operators.
|
|
37
27
|
email: raykrueger@gmail.com
|
|
38
28
|
executables: []
|
|
@@ -95,9 +85,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
95
85
|
version:
|
|
96
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
87
|
requirements:
|
|
98
|
-
- - "
|
|
88
|
+
- - ">="
|
|
99
89
|
- !ruby/object:Gem::Version
|
|
100
|
-
version:
|
|
90
|
+
version: "0"
|
|
101
91
|
version:
|
|
102
92
|
requirements: []
|
|
103
93
|
|