uzuuzu 0.0.14 → 0.0.15
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/VERSION +1 -1
- data/template/config.ru +1 -1
- data/template/start.rb +1 -1
- data/template/uzuuzu.yaml +20 -7
- data/uzuuzu.gemspec +2 -2
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.15
|
data/template/config.ru
CHANGED
data/template/start.rb
CHANGED
data/template/uzuuzu.yaml
CHANGED
@@ -14,13 +14,26 @@ logger:
|
|
14
14
|
- adapter: stderr
|
15
15
|
level: debug
|
16
16
|
|
17
|
-
oauth
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
site: "http://twitter.com"
|
17
|
+
# configure twitter oauth
|
18
|
+
twitter:
|
19
|
+
consumer_key: 'your_consumer_key'
|
20
|
+
consumer_secret: 'your_secret_key'
|
22
21
|
|
22
|
+
# configure facebook oauth2
|
23
|
+
facebook:
|
24
|
+
client_id: 'your_client_id'
|
25
|
+
client_secret: 'your_secret_key'
|
26
|
+
# scope: 'offline_access'
|
27
|
+
|
28
|
+
# configure google+ oauth2
|
29
|
+
google:
|
30
|
+
client_id: 'your_client_id'
|
31
|
+
client_secret: 'your_secret_key'
|
32
|
+
scope: 'https://www.googleapis.com/auth/plus.me'
|
33
|
+
response_type: 'code'
|
34
|
+
|
35
|
+
# configure amazon web service
|
23
36
|
aws:
|
24
|
-
access_key_id: your_access_key
|
25
|
-
secret_access_key: your_secret_key
|
37
|
+
access_key_id: 'your_access_key'
|
38
|
+
secret_access_key: 'your_secret_key'
|
26
39
|
|
data/uzuuzu.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{uzuuzu}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.15"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Takuya Kondo"]
|
12
|
-
s.date = %q{2012-01-
|
12
|
+
s.date = %q{2012-01-03}
|
13
13
|
s.default_executable = %q{uzuuzu}
|
14
14
|
s.description = %q{uzuuzu is web frame work}
|
15
15
|
s.email = %q{takuya_v_v@uzuuzu.jp}
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: uzuuzu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.15
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Takuya Kondo
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-01-
|
13
|
+
date: 2012-01-03 00:00:00 +09:00
|
14
14
|
default_executable: uzuuzu
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -520,7 +520,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
520
520
|
requirements:
|
521
521
|
- - ">="
|
522
522
|
- !ruby/object:Gem::Version
|
523
|
-
hash:
|
523
|
+
hash: 1209845092427967273
|
524
524
|
segments:
|
525
525
|
- 0
|
526
526
|
version: "0"
|