Sha256: 62c8dd081a8dc096a5964f3ed15322da50fa647e4fa3251240c4e0bab6bd1acf
Contents?: true
Size: 1.24 KB
Versions: 12
Compression:
Stored size: 1.24 KB
Contents
<% if options[:oauth] -%> development: strategy: oauth oauth_consumer_key: devkey oauth_consumer_secret: devsecret base_url: "https://twitter.com" authorize_path: "/oauth/authenticate" api_timeout: 10 remember_for: 14 # days oauth_callback: "http://localhost:3000/oauth_callback" test: strategy: oauth oauth_consumer_key: testkey oauth_consumer_secret: testsecret base_url: "https://twitter.com" authorize_path: "/oauth/authenticate" api_timeout: 10 remember_for: 14 # days oauth_callback: "http://localhost:3000/oauth_callback" production: strategy: oauth oauth_consumer_key: prodkey oauth_consumer_secret: prodsecret authorize_path: "/oauth/authenticate" base_url: "https://twitter.com" api_timeout: 10 remember_for: 14 # days <% else -%> development: strategy: basic api_timeout: 10 base_url: "https://twitter.com" # randomly generated key for encrypting Twitter passwords encryption_key: "<%= key = ActiveSupport::SecureRandom.hex(12) %>" remember_for: 14 # days test: strategy: basic api_timeout: 10 base_url: "https://twitter.com" encryption_key: "<%= key %>" remember_for: 14 # days production: strategy: basic api_timeout: 10 encryption_key: "<%= key %>" remember_for: 14 # days <% end %>
Version data entries
12 entries across 12 versions & 4 rubygems