social_sign_on 0.1.0 → 0.1.1
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 +3 -3
- data/VERSION +1 -1
- data/lib/social_sign_on.rb +2 -2
- data/social_sign_on.gemspec +54 -0
- metadata +4 -3
data/Rakefile
CHANGED
|
@@ -5,10 +5,10 @@ begin
|
|
|
5
5
|
require 'jeweler'
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "social_sign_on"
|
|
8
|
-
gem.summary =
|
|
9
|
-
gem.description =
|
|
8
|
+
gem.summary = "Enable your app to use the tribune's social sign on service."
|
|
9
|
+
gem.description = "requires some messing around"
|
|
10
10
|
gem.email = "robb@teamvoice.com"
|
|
11
|
-
gem.homepage = "http://github.com/
|
|
11
|
+
gem.homepage = "http://github.com/LocalOfferNetwork/social_sign_on"
|
|
12
12
|
gem.authors = ["Robb Broome"]
|
|
13
13
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
14
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/lib/social_sign_on.rb
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
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{social_sign_on}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Robb Broome"]
|
|
12
|
+
s.date = %q{2010-09-22}
|
|
13
|
+
s.description = %q{requires some messing around}
|
|
14
|
+
s.email = %q{robb@teamvoice.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/social_sign_on.rb",
|
|
27
|
+
"social_sign_on.gemspec",
|
|
28
|
+
"test/helper.rb",
|
|
29
|
+
"test/test_social_sign_on.rb"
|
|
30
|
+
]
|
|
31
|
+
s.homepage = %q{http://github.com/LocalOfferNetwork/social_sign_on}
|
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
33
|
+
s.require_paths = ["lib"]
|
|
34
|
+
s.rubygems_version = %q{1.3.6}
|
|
35
|
+
s.summary = %q{Enable your app to use the tribune's social sign on service.}
|
|
36
|
+
s.test_files = [
|
|
37
|
+
"test/helper.rb",
|
|
38
|
+
"test/test_social_sign_on.rb"
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
if s.respond_to? :specification_version then
|
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
43
|
+
s.specification_version = 3
|
|
44
|
+
|
|
45
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
46
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
47
|
+
else
|
|
48
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
49
|
+
end
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Robb Broome
|
|
@@ -46,10 +46,11 @@ files:
|
|
|
46
46
|
- Rakefile
|
|
47
47
|
- VERSION
|
|
48
48
|
- lib/social_sign_on.rb
|
|
49
|
+
- social_sign_on.gemspec
|
|
49
50
|
- test/helper.rb
|
|
50
51
|
- test/test_social_sign_on.rb
|
|
51
52
|
has_rdoc: true
|
|
52
|
-
homepage: http://github.com/
|
|
53
|
+
homepage: http://github.com/LocalOfferNetwork/social_sign_on
|
|
53
54
|
licenses: []
|
|
54
55
|
|
|
55
56
|
post_install_message:
|