-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-dist.rb
executable file
·43 lines (40 loc) · 1.18 KB
/
config-dist.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
$app_config = {
:messenger_class => 'Tcp',
:notifier_class => 'Libnotify',
}
#
# Configuration settings for Twitter API
#
# Go to https://dev.twitter.com/apps/new, login, create a new application. Consumer
# Key and Consumer Secret will be available on the first page.
#
# Click "Create my access token" button near bottom of page, page will refresh and
# give oAuth Token and oAuth Token Secret on the same part of the page as the bottom,
# near the bottom.
#
# Copy the consumer and authorization keys and secrets and put them here. Rename file
# as config.rb
#
# UNCOMMENT BELOW TO USE TWITTER
#require 'twitter'
#Twitter.configure do |config|
# config.consumer_key = ''
# config.consumer_secret = ''
# config.oauth_token = ''
# config.oauth_token_secret = ''
#end
#
# Configuration for Facebook API
#
# Go to developers.facebook.com/apps, make sure you're approved as an FB developer. Create app,
# figure out how to authorize yourself on that app and give yourself offline access, then get that
# access token and uncomment and paste below
#
# UNCOMMENT BELOW TO USE FACEBOOK
#
#require 'fb_graph'
#$app_config = {
# facebook: {
# access_token: ''
# }
#}