grosser-rpx_now 0.5.6 → 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
data/init.rb ADDED
@@ -0,0 +1,2 @@
1
+ #Needed to load rpx_now when used as Rails plugin
2
+ require 'rpx_now'
data/rpx_now.gemspec ADDED
@@ -0,0 +1,57 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{rpx_now}
5
+ s.version = "0.5.7"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Michael Grosser"]
9
+ s.date = %q{2009-06-21}
10
+ s.email = %q{grosser.michael@gmail.com}
11
+ s.extra_rdoc_files = [
12
+ "README.markdown"
13
+ ]
14
+ s.files = [
15
+ "CHANGELOG",
16
+ "MIGRATION",
17
+ "README.markdown",
18
+ "Rakefile",
19
+ "VERSION.yml",
20
+ "certs/ssl_cert.pem",
21
+ "init.rb",
22
+ "lib/rpx_now.rb",
23
+ "lib/rpx_now/contacts_collection.rb",
24
+ "lib/rpx_now/user_integration.rb",
25
+ "lib/rpx_now/user_proxy.rb",
26
+ "rpx_now.gemspec",
27
+ "spec/fixtures/get_contacts_response.json",
28
+ "spec/rpx_now/contacts_collection_spec.rb",
29
+ "spec/rpx_now/user_proxy_spec.rb",
30
+ "spec/rpx_now_spec.rb",
31
+ "spec/spec_helper.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/grosser/rpx_now}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.4}
37
+ s.summary = %q{Helper to simplify RPX Now user login/creation}
38
+ s.test_files = [
39
+ "spec/rpx_now_spec.rb",
40
+ "spec/rpx_now/contacts_collection_spec.rb",
41
+ "spec/rpx_now/user_proxy_spec.rb",
42
+ "spec/spec_helper.rb"
43
+ ]
44
+
45
+ if s.respond_to? :specification_version then
46
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
47
+ s.specification_version = 3
48
+
49
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
+ s.add_runtime_dependency(%q<activesupport>, [">= 0"])
51
+ else
52
+ s.add_dependency(%q<activesupport>, [">= 0"])
53
+ end
54
+ else
55
+ s.add_dependency(%q<activesupport>, [">= 0"])
56
+ end
57
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grosser-rpx_now
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.6
4
+ version: 0.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-20 00:00:00 -07:00
12
+ date: 2009-06-21 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -31,19 +31,24 @@ extensions: []
31
31
  extra_rdoc_files:
32
32
  - README.markdown
33
33
  files:
34
+ - CHANGELOG
35
+ - MIGRATION
34
36
  - README.markdown
35
37
  - Rakefile
36
38
  - VERSION.yml
39
+ - certs/ssl_cert.pem
40
+ - init.rb
37
41
  - lib/rpx_now.rb
38
42
  - lib/rpx_now/contacts_collection.rb
39
43
  - lib/rpx_now/user_integration.rb
40
44
  - lib/rpx_now/user_proxy.rb
45
+ - rpx_now.gemspec
41
46
  - spec/fixtures/get_contacts_response.json
42
47
  - spec/rpx_now/contacts_collection_spec.rb
43
48
  - spec/rpx_now/user_proxy_spec.rb
44
49
  - spec/rpx_now_spec.rb
45
50
  - spec/spec_helper.rb
46
- has_rdoc: true
51
+ has_rdoc: false
47
52
  homepage: http://github.com/grosser/rpx_now
48
53
  post_install_message:
49
54
  rdoc_options:
@@ -67,7 +72,7 @@ requirements: []
67
72
  rubyforge_project:
68
73
  rubygems_version: 1.2.0
69
74
  signing_key:
70
- specification_version: 2
75
+ specification_version: 3
71
76
  summary: Helper to simplify RPX Now user login/creation
72
77
  test_files:
73
78
  - spec/rpx_now_spec.rb