rpx_now 0.5.10

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.
@@ -0,0 +1,20 @@
1
+ # ---- requirements
2
+ require 'rubygems'
3
+ require 'spec'
4
+ require 'mocha'
5
+
6
+ $LOAD_PATH << File.expand_path("../lib", File.dirname(__FILE__))
7
+
8
+ # ---- setup environment/plugin
9
+ require File.expand_path("../init", File.dirname(__FILE__))
10
+ API_KEY = '4b339169026742245b754fa338b9b0aebbd0a733'
11
+ API_VERSION = RPXNow.api_version
12
+
13
+ # ---- rspec
14
+ Spec::Runner.configure do |config|
15
+ config.mock_with :mocha
16
+ config.before :each do
17
+ RPXNow.api_key = API_KEY
18
+ RPXNow.api_version = API_VERSION
19
+ end
20
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rpx_now
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.10
5
+ platform: ruby
6
+ authors:
7
+ - Michael Grosser
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-10-06 00:00:00 +02:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description:
26
+ email: grosser.michael@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README.markdown
33
+ files:
34
+ - CHANGELOG
35
+ - MIGRATION
36
+ - README.markdown
37
+ - Rakefile
38
+ - VERSION
39
+ - certs/ssl_cert.pem
40
+ - init.rb
41
+ - lib/rpx_now.rb
42
+ - lib/rpx_now/contacts_collection.rb
43
+ - lib/rpx_now/user_integration.rb
44
+ - lib/rpx_now/user_proxy.rb
45
+ - pkg/rpx_now-0.5.10.gem
46
+ - rpx_now.gemspec
47
+ - spec/fixtures/get_contacts_response.json
48
+ - spec/rpx_now/contacts_collection_spec.rb
49
+ - spec/rpx_now/user_proxy_spec.rb
50
+ - spec/rpx_now_spec.rb
51
+ - spec/spec_helper.rb
52
+ has_rdoc: true
53
+ homepage: http://github.com/grosser/rpx_now
54
+ licenses: []
55
+
56
+ post_install_message:
57
+ rdoc_options:
58
+ - --charset=UTF-8
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: "0"
66
+ version:
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: "0"
72
+ version:
73
+ requirements: []
74
+
75
+ rubyforge_project: rpx-now
76
+ rubygems_version: 1.3.5
77
+ signing_key:
78
+ specification_version: 3
79
+ summary: Helper to simplify RPX Now user login/creation
80
+ test_files:
81
+ - spec/rpx_now_spec.rb
82
+ - spec/rpx_now/contacts_collection_spec.rb
83
+ - spec/rpx_now/user_proxy_spec.rb
84
+ - spec/spec_helper.rb