tweetlr 0.1.32 → 0.1.33

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc3d92929654e85bfe0f117c779b3a9b6225ac58
4
- data.tar.gz: 80d893afe0cf1abeb525f84dcea01737b85ec4b7
3
+ metadata.gz: 1aa8a0d2e3bb12715a214d46d3deac6b98b86a11
4
+ data.tar.gz: 396f8e7680f63b65fda9774b6a8cea375f00c703
5
5
  SHA512:
6
- metadata.gz: e9fa0c58aaa2c5980810ef5d7d94c7b3b63447bd3f4645ad533ab81b36c67bbb5815842aaf32e4a70c29e126354d2243b9c94fefd865c2581c7ccf860e2ef350
7
- data.tar.gz: 3c20b5a5e927886de415ac392431f1ef80973118f8a14454aa57411fc8cc215c66501b8fd538939f164ad93f71652b1baece3157f9e89292e1b3f377d3c64f83
6
+ metadata.gz: af23c25ed42011c91a0d406ba90fb0062795755d6eefa5aff3fb3b040a6b84cf8bf47aa97f7268b14ee7fa10182ae6003b7db8a907ee1728006c2ca286be5680
7
+ data.tar.gz: 207becfa278d0b07214b9bca848d7df0222ee91a576d5f18f9ffc387ee3a9d014bedcf5b84076e6f47c9e2cad71d293ea24db4dc41d38d039df217a91924b273
data/config/tweetlr.yml CHANGED
@@ -1,23 +1,22 @@
1
1
  results_per_page: 100
2
2
  result_type: recent
3
- search_term: '#uxcamphh' #find tweets containing any of these terms
3
+ search_term: 'cat+dog+unicorn' #find tweets containing any of these terms
4
4
  start_at_tweet_id: 61847783463854082 # the tweet id to start searching at
5
+ twitter_app_consumer_key: YOUR APPS TWITTER API KEY
6
+ twitter_app_consumer_secret: YOUR APPS TWITTER API SECRET
7
+ twitter_oauth_token: YOUR APPS TWITTER API OAUTH TOKEN
8
+ twitter_oauth_token_secret: YOUR APPS TWITTER API OAUTH TOKEN SECRET
5
9
  api_endpoint_twitter: 'http://search.twitter.com/search.json'
6
10
  api_endpoint_tumblr: 'http://www.tumblr.com'
7
- twitter_app_consumer_key: 'odF5yj4pF39WeQBGCLSpbw'
8
- twitter_app_consumer_secret: 'dRF8y3cPdQ3sHmmvmsNtk5AF8HMunhWNwxAscRO9o'
9
- twitter_oauth_token: '745060136-UoQCtpEvGxfZ9DpodYgweTY9b6ifQREIgqfZtOic'
10
- twitter_oauth_token_secret: '0W6KPPCXjdz5FkEWN9o7jUWWkWe8eH7YthowfgP0'
11
- tumblr_oauth_api_key: 'RZ4dIVY2MSBpCPeUQ2XtsEG88kP6fGBdSNOkZahoi2FQfnNwoz'
12
- tumblr_oauth_api_secret: 'DNVKBxN90qxVHVFkpBandNnxFgAiNg8WzKjcja333f2sO9hZ1z'
13
- tumblr_oauth_access_token_key: '94VHmfFAYGTuei5X2sajBnEEH5gOvE3C4RyraIx6KIycaLKnxa'
14
- tumblr_oauth_access_token_secret: 'xuZ2SbOjyibcmDevNoP3NirCH8EXcL5QIHsvKySoZT9nTpCQRO'
15
- tumblr_blog_hostname: 'tweetlr-testlr.tumblr.com' #e.g. mysubblog.tumblr.com
16
- instagram_oauth_api_key: 'd63158ea340c466ebf1790d313402e4f'
17
- instagram_oauth_api_secret: '7fdef35a4c61461e89f93b6fd1b56cf6'
18
- instagram_oauth_access_token: '2626119.d63158e.99f1305e5e1543bd8f78c0fc43ebfe57'
19
- embedly_key: 'c2a0fc113dee4170968431baba757f99' #tweetlr uses http://embedly.com for link processing. a free plan containing an api key is available & recommended to use in order to ensure full support
20
- update_period: 10 #check for updates every 300 secs = 5 minutes
11
+ tumblr_oauth_api_key: YOUR APPS TUMBLR API TOKEN
12
+ tumblr_oauth_api_secret: YOUR APPS TUMBLR API SECRET
13
+ tumblr_oauth_access_token_key: YOUR BLOGS OAUTH ACCESS TOKEN KEY
14
+ tumblr_oauth_access_token_secret: YOUR BLOGS OAUTH ACCESS TOKEN SECRE
15
+ tumblr_blog_hostname: YOUR BLOGS HOSTNAME #e.g. myblog.tumblr.com
16
+ embedly_key: '' #tweetlr uses http://embedly.com for link processing. a free plan containing an api key is available & recommended to use in order to ensure full support
17
+ update_period: 300 #check for updates every 300 secs = 5 minutes
21
18
  shouts: 'says' # will be concatenated after the username, before the message: @mr_x says: awesome things on a photo!
22
- loglevel: 0 # 0: debug, 1: info (default), 2: warn, 3: error, 5: fatal
19
+ loglevel: 1 # 0: debug, 1: info (default), 2: warn, 3: error, 5: fatal
23
20
  whitelist: #twitter accounts in that list will have their tweets published immediately. post from others will be saved as drafts. blank list will publish all tweets immediately
21
+ - whitey_mc_whitelist
22
+ - sven_kr
data/lib/tweetlr.rb CHANGED
@@ -2,7 +2,7 @@ require 'tweetlr/log_aware'
2
2
  require 'tweetlr/core'
3
3
 
4
4
  module Tweetlr
5
- VERSION = '0.1.32'
5
+ VERSION = '0.1.33'
6
6
 
7
7
  API_ENDPOINT_TWITTER = 'http://search.twitter.com/search.json'
8
8
  API_ENDPOINT_TUMBLR = 'http://www.tumblr.com'
data/tweetlr.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "tweetlr"
3
- s.version = "0.1.32"
3
+ s.version = "0.1.33"
4
4
  s.author = "Sven Kraeuter"
5
5
  s.email = "sven.kraeuter@gmail.com"
6
6
  s.homepage = "http://tweetlr.5v3n.com"
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
17
17
  s.add_dependency "nokogiri"
18
18
  s.add_dependency "oauth"
19
19
  s.add_dependency "twitter", "4.8.1"
20
+ s.add_dependency "faraday", "0.8"
20
21
 
21
22
  s.add_development_dependency "rake"
22
23
  s.add_development_dependency "rspec", ["~> 2.13"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tweetlr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.32
4
+ version: 0.1.33
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Kraeuter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-19 00:00:00.000000000 Z
11
+ date: 2014-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: daemons
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - '='
109
109
  - !ruby/object:Gem::Version
110
110
  version: 4.8.1
111
+ - !ruby/object:Gem::Dependency
112
+ name: faraday
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: '0.8'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '='
123
+ - !ruby/object:Gem::Version
124
+ version: '0.8'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: rake
113
127
  requirement: !ruby/object:Gem::Requirement