facebook_app 0.0.4 → 0.0.6

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 ADDED
@@ -0,0 +1 @@
1
+ pkg/*
@@ -3,6 +3,8 @@ module FacebookApp
3
3
  attr_accessible :app_id, :secret, :app_url, :development, :password, :email
4
4
  validates_presence_of :app_id, :secret, :app_url
5
5
 
6
+ set_table_name "facebook_app_facebook_credentials"
7
+
6
8
  scope :last_production_config, where(:development => false).order("id desc").limit(1)
7
9
  scope :last_development_config, where(:development => true).order("id desc").limit(1)
8
10
 
@@ -1,3 +1,3 @@
1
1
  module FacebookApp
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: facebook_app
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.4
5
+ version: 0.0.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jack Kinsella
@@ -110,6 +110,7 @@ extensions: []
110
110
  extra_rdoc_files: []
111
111
 
112
112
  files:
113
+ - .gitignore
113
114
  - Gemfile
114
115
  - Gemfile.lock
115
116
  - README.textile