Skip to content

Commit

Permalink
Make consumer_key readable
Browse files Browse the repository at this point in the history
As proposed by @paulwalker in #393.
  • Loading branch information
sferik committed May 18, 2013
1 parent 6f1d190 commit a318869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/twitter/configurable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
module Twitter
module Configurable
extend Forwardable
attr_writer :consumer_key, :consumer_secret, :oauth_token, :oauth_token_secret, :bearer_token
attr_accessor :endpoint, :connection_options, :identity_map, :middleware
attr_writer :consumer_secret, :oauth_token, :oauth_token_secret, :bearer_token
attr_accessor :consumer_key, :endpoint, :connection_options, :identity_map, :middleware
def_delegator :options, :hash

class << self
Expand Down

0 comments on commit a318869

Please sign in to comment.