messagebus_ruby_api 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/lib/messagebus_ruby_api/version.rb +1 -1
- data/lib/messagebus_ruby_api.rb +4 -2
- data/spec/messagebus_ruby_api/client_spec.rb +2 -1
- data/spec/{messagebus_ruby_api/spec_core_extensions.rb → spec_core_extensions.rb} +0 -0
- data/spec/spec_helper.rb +2 -2
- metadata +9 -13
- data/.bundle/config +0 -2
- data/.gitignore +0 -2
- data/Gemfile.lock +0 -28
- data/messagebus.gemspec +0 -21
data/README.rdoc
CHANGED
data/lib/messagebus_ruby_api.rb
CHANGED
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: messagebus_ruby_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Messagebus dev team
|
@@ -24,21 +24,17 @@ extensions: []
|
|
24
24
|
extra_rdoc_files: []
|
25
25
|
|
26
26
|
files:
|
27
|
-
- .bundle/config
|
28
|
-
- .gitignore
|
29
|
-
- .rvmrc
|
30
|
-
- Gemfile
|
31
|
-
- Gemfile.lock
|
32
|
-
- README.rdoc
|
33
|
-
- Rakefile
|
34
|
-
- lib/messagebus_ruby_api.rb
|
35
27
|
- lib/messagebus_ruby_api/client.rb
|
36
28
|
- lib/messagebus_ruby_api/errors.rb
|
37
29
|
- lib/messagebus_ruby_api/version.rb
|
38
|
-
-
|
30
|
+
- lib/messagebus_ruby_api.rb
|
39
31
|
- spec/messagebus_ruby_api/client_spec.rb
|
40
|
-
- spec/
|
32
|
+
- spec/spec_core_extensions.rb
|
41
33
|
- spec/spec_helper.rb
|
34
|
+
- README.rdoc
|
35
|
+
- Gemfile
|
36
|
+
- Rakefile
|
37
|
+
- .rvmrc
|
42
38
|
has_rdoc: true
|
43
39
|
homepage: ""
|
44
40
|
licenses: []
|
@@ -63,11 +59,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
59
|
requirements: []
|
64
60
|
|
65
61
|
rubyforge_project: messagebus_ruby_api
|
66
|
-
rubygems_version: 1.6.
|
62
|
+
rubygems_version: 1.6.2
|
67
63
|
signing_key:
|
68
64
|
specification_version: 3
|
69
65
|
summary: Send email through Messagebus service
|
70
66
|
test_files:
|
71
67
|
- spec/messagebus_ruby_api/client_spec.rb
|
72
|
-
- spec/
|
68
|
+
- spec/spec_core_extensions.rb
|
73
69
|
- spec/spec_helper.rb
|
data/.bundle/config
DELETED
data/.gitignore
DELETED
data/Gemfile.lock
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
messagebus_ruby_api (0.0.1)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: http://rubygems.org/
|
8
|
-
specs:
|
9
|
-
diff-lcs (1.1.2)
|
10
|
-
fakeweb (1.3.0)
|
11
|
-
rr (1.0.2)
|
12
|
-
rspec (2.5.0)
|
13
|
-
rspec-core (~> 2.5.0)
|
14
|
-
rspec-expectations (~> 2.5.0)
|
15
|
-
rspec-mocks (~> 2.5.0)
|
16
|
-
rspec-core (2.5.1)
|
17
|
-
rspec-expectations (2.5.0)
|
18
|
-
diff-lcs (~> 1.1.2)
|
19
|
-
rspec-mocks (2.5.0)
|
20
|
-
|
21
|
-
PLATFORMS
|
22
|
-
ruby
|
23
|
-
|
24
|
-
DEPENDENCIES
|
25
|
-
fakeweb
|
26
|
-
messagebus_ruby_api!
|
27
|
-
rr (= 1.0.2)
|
28
|
-
rspec (= 2.5.0)
|
data/messagebus.gemspec
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
3
|
-
require "messagebus_ruby_api/version"
|
4
|
-
|
5
|
-
Gem::Specification.new do |s|
|
6
|
-
s.name = "messagebus_ruby_api"
|
7
|
-
s.version = MessagebusRubyApi::VERSION
|
8
|
-
s.platform = Gem::Platform::RUBY
|
9
|
-
s.authors = ["Messagebus dev team"]
|
10
|
-
s.email = ["messagebus@googlegroups.com"]
|
11
|
-
s.homepage = ""
|
12
|
-
s.summary = %q{Send email through Messagebus service}
|
13
|
-
s.description = %q{Allows you to use the Messagebus API }
|
14
|
-
|
15
|
-
s.rubyforge_project = "messagebus_ruby_api"
|
16
|
-
|
17
|
-
s.files = `git ls-files`.split("\n")
|
18
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
-
s.require_paths = ["lib"]
|
21
|
-
end
|