koala-rails 0.1.7 → 0.1.8

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/.gitignore CHANGED
@@ -15,4 +15,4 @@ tags
15
15
  *.swp
16
16
  *.gem
17
17
  .project
18
-
18
+ Gemfile.lock
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  # If you have other dependencies, add them here
21
21
  s.add_dependency("koala", "~> 0.10.0")
22
22
 
23
- s.add_development_dependency("bundler", "~> 1.0.7")
23
+ s.add_development_dependency("bundler", ">= 1.0.7")
24
24
  s.add_development_dependency("rake", "~> 0.8.7")
25
25
 
26
26
  # If you need to check in files that aren't .rb files, add them here
@@ -5,9 +5,9 @@
5
5
  require "koala"
6
6
 
7
7
  module Facebook
8
- CONFIG = YAML.load(ERB.new(File.read("#{RAILS_ROOT}/config/facebook.yml")).result)[RAILS_ENV]
8
+ CONFIG = YAML.load(ERB.new(File.read("#{RAILS_ROOT}/config/facebook.yml")).result)[Rails.env]
9
9
  APP_ID = CONFIG['app_id']
10
- SECRET = CONFIG['secret_key']
10
+ SECRET = CONFIG['secret']
11
11
  end
12
12
 
13
13
  Koala::Facebook::OAuth.class_eval do
@@ -1,4 +1,4 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module KoalaRails
3
- VERSION = "0.1.7"
3
+ VERSION = "0.1.8"
4
4
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 7
9
- version: 0.1.7
8
+ - 8
9
+ version: 0.1.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Steven Hancock
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-16 00:00:00 -08:00
17
+ date: 2011-01-03 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -37,7 +37,7 @@ dependencies:
37
37
  requirement: &id002 !ruby/object:Gem::Requirement
38
38
  none: false
39
39
  requirements:
40
- - - ~>
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  segments:
43
43
  - 1
@@ -75,7 +75,6 @@ extra_rdoc_files:
75
75
  files:
76
76
  - .gitignore
77
77
  - Gemfile
78
- - Gemfile.lock
79
78
  - LICENSE
80
79
  - README.rdoc
81
80
  - Rakefile
@@ -107,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
107
106
  requirements:
108
107
  - - ">="
109
108
  - !ruby/object:Gem::Version
110
- hash: 17244013
109
+ hash: 33106833
111
110
  segments:
112
111
  - 0
113
112
  version: "0"
@@ -1,22 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- koala-rails (0.1.7)
5
- koala (~> 0.10.0)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- json (1.4.6)
11
- koala (0.10.0)
12
- json (>= 1.0)
13
- rake (0.8.7)
14
-
15
- PLATFORMS
16
- ruby
17
-
18
- DEPENDENCIES
19
- bundler (~> 1.0.7)
20
- koala (~> 0.10.0)
21
- koala-rails!
22
- rake (~> 0.8.7)