slayer-rpx_now 0.6.24 → 0.6.25

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ begin
10
10
  Jeweler::Tasks.new do |gem|
11
11
  gem.name = 'slayer-rpx_now'
12
12
  gem.summary = "Helper to simplify RPX Now user login/creation"
13
- gem.email = "devvlad@gmail.com"
13
+ gem.email = "github@vlad.org.ua"
14
14
  gem.homepage = "http://github.com/slayer/#{gem.name}"
15
15
  gem.authors = ["Michael Grosser", "Vlad Moskovets"]
16
16
  gem.add_dependency ['json_pure']
data/Readme.md CHANGED
@@ -1,3 +1,8 @@
1
+ Modifications
2
+ =============
3
+
4
+ - IE8 bugfix: "undefined RPXNOW" (jQuery solution)
5
+
1
6
  [Janrain Engage](http://www.janrain.com/products/engage) (formerly known as RPXNow):
2
7
 
3
8
  - Login to your page through Facebook / Twitter / Myspace / Google / OpenId / MS-LiveId / AOL / ...
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.24
1
+ 0.6.25
data/lib/rpx_now.rb CHANGED
@@ -115,14 +115,14 @@ module RPXNow
115
115
  <script src="#{Api.host}/openid/v#{extract_version(options)}/widget" type="text/javascript"></script>
116
116
  <script type="text/javascript">
117
117
  //<![CDATA[
118
- $(function () {
118
+ setTimeout(function () {
119
119
  RPXNOW.token_url = '#{url}';
120
120
  RPXNOW.realm = '#{subdomain}';
121
121
  RPXNOW.overlay = true;
122
122
  #{ "RPXNOW.language_preference = '#{options[:language]}';" if options[:language] }
123
123
  #{ "RPXNOW.default_provider = '#{options[:default_provider]}';" if options[:default_provider] }
124
124
  #{ "RPXNOW.flags = '#{options[:flags]}';" if options[:flags] }
125
- });
125
+ }, 1000);
126
126
  //]]>
127
127
  </script>
128
128
  EOF
@@ -0,0 +1,66 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{slayer-rpx_now}
8
+ s.version = "0.6.25"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Michael Grosser", "Vlad Moskovets"]
12
+ s.date = %q{2011-08-12}
13
+ s.email = %q{github@vlad.org.ua}
14
+ s.files = [
15
+ ".gitignore",
16
+ "CHANGELOG",
17
+ "Gemfile",
18
+ "Gemfile.lock",
19
+ "MIGRATION",
20
+ "Rakefile",
21
+ "Readme.md",
22
+ "VERSION",
23
+ "certs/ssl_cert.pem",
24
+ "init.rb",
25
+ "lib/rpx_now.rb",
26
+ "lib/rpx_now/api.rb",
27
+ "lib/rpx_now/contacts_collection.rb",
28
+ "lib/rpx_now/user_integration.rb",
29
+ "lib/rpx_now/user_proxy.rb",
30
+ "rpx_now.gemspec",
31
+ "slayer-rpx_now.gemspec",
32
+ "spec/fixtures/get_contacts_response.json",
33
+ "spec/integration/mapping_spec.rb",
34
+ "spec/rpx_now/api_spec.rb",
35
+ "spec/rpx_now/contacts_collection_spec.rb",
36
+ "spec/rpx_now/user_proxy_spec.rb",
37
+ "spec/rpx_now_spec.rb",
38
+ "spec/spec_helper.rb"
39
+ ]
40
+ s.homepage = %q{http://github.com/slayer/slayer-rpx_now}
41
+ s.rdoc_options = ["--charset=UTF-8"]
42
+ s.require_paths = ["lib"]
43
+ s.rubygems_version = %q{1.7.2}
44
+ s.summary = %q{Helper to simplify RPX Now user login/creation}
45
+ s.test_files = [
46
+ "spec/rpx_now/user_proxy_spec.rb",
47
+ "spec/rpx_now/api_spec.rb",
48
+ "spec/rpx_now/contacts_collection_spec.rb",
49
+ "spec/rpx_now_spec.rb",
50
+ "spec/spec_helper.rb",
51
+ "spec/integration/mapping_spec.rb"
52
+ ]
53
+
54
+ if s.respond_to? :specification_version then
55
+ s.specification_version = 3
56
+
57
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
58
+ s.add_runtime_dependency(%q<json_pure>, [">= 0"])
59
+ else
60
+ s.add_dependency(%q<json_pure>, [">= 0"])
61
+ end
62
+ else
63
+ s.add_dependency(%q<json_pure>, [">= 0"])
64
+ end
65
+ end
66
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slayer-rpx_now
3
3
  version: !ruby/object:Gem::Version
4
- hash: 55
4
+ hash: 53
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 24
10
- version: 0.6.24
9
+ - 25
10
+ version: 0.6.25
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Grosser
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-08-09 00:00:00 Z
19
+ date: 2011-08-12 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: json_pure
@@ -33,7 +33,7 @@ dependencies:
33
33
  type: :runtime
34
34
  version_requirements: *id001
35
35
  description:
36
- email: devvlad@gmail.com
36
+ email: github@vlad.org.ua
37
37
  executables: []
38
38
 
39
39
  extensions: []
@@ -57,6 +57,7 @@ files:
57
57
  - lib/rpx_now/user_integration.rb
58
58
  - lib/rpx_now/user_proxy.rb
59
59
  - rpx_now.gemspec
60
+ - slayer-rpx_now.gemspec
60
61
  - spec/fixtures/get_contacts_response.json
61
62
  - spec/integration/mapping_spec.rb
62
63
  - spec/rpx_now/api_spec.rb