Sha256: 56d9882a4745c3a336f361bd16422b11629bfc3c3b5dedf2b2eb1901711dc38e

Contents?: true

Size: 574 Bytes

Versions: 2

Compression:

Stored size: 574 Bytes

Contents

module Bently
  class Twitter < RailsRecipe

    title 'twitter'
    homepage 'https://github.com/sferik/twitter/blob/master/README.md'

    def initialize
      gem 'twitter'
      bundle
      todo 'Register your application with Twitter: https://dev.twitter.com/apps/new'
      todo 'Copy and paste in your OAuth data:'
      code %{Twitter.configure do |config|
  config.consumer_key = YOUR_CONSUMER_KEY
  config.consumer_secret = YOUR_CONSUMER_SECRET
  config.oauth_token = YOUR_OAUTH_TOKEN
  config.oauth_token_secret = YOUR_OAUTH_TOKEN_SECRET
end}
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bently-1.0.2 lib/bently/recipe/twitter.rb
bently-1.0.1 lib/bently/recipe/twitter.rb