replacer_bot 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +18 -1
- data/lib/replacer_bot/cli.rb +7 -1
- data/lib/replacer_bot/replacer.rb +10 -8
- data/lib/replacer_bot/version.rb +1 -1
- data/replacer_bot.gemspec +2 -2
- data/spec/lib/replacer_bot/replacer_spec.rb +14 -4
- data/spec/vcr/ReplacerBot_Replacer/tweet/actually_sends_tweets.yml +979 -0
- data/spec/vcr/ReplacerBot_Replacer/tweet/sends_no_tweets_on_a_dry-run.yml +980 -0
- metadata +9 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: replacer_bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pikesley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: twitter
|
@@ -192,7 +192,8 @@ dependencies:
|
|
192
192
|
- - "~>"
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0.8'
|
195
|
-
description:
|
195
|
+
description: Search Twitter for a phrase, search-and-replace phrases in the tweets,
|
196
|
+
tweet them
|
196
197
|
email:
|
197
198
|
- github@orgraphone.org
|
198
199
|
executables:
|
@@ -237,7 +238,9 @@ files:
|
|
237
238
|
- spec/vcr/ReplacerBot_Replacer/search/saves_the_text_of_its_tweets.yml
|
238
239
|
- spec/vcr/ReplacerBot_Replacer/search/searches_for_tweets.yml
|
239
240
|
- spec/vcr/ReplacerBot_Replacer/search/uniqs_its_tweets.yml
|
241
|
+
- spec/vcr/ReplacerBot_Replacer/tweet/actually_sends_tweets.yml
|
240
242
|
- spec/vcr/ReplacerBot_Replacer/tweet/prepares_sensible_tweets.yml
|
243
|
+
- spec/vcr/ReplacerBot_Replacer/tweet/sends_no_tweets_on_a_dry-run.yml
|
241
244
|
homepage: ''
|
242
245
|
licenses:
|
243
246
|
- MIT
|
@@ -261,7 +264,7 @@ rubyforge_project:
|
|
261
264
|
rubygems_version: 2.4.5
|
262
265
|
signing_key:
|
263
266
|
specification_version: 4
|
264
|
-
summary:
|
267
|
+
summary: Search, mangle and tweet
|
265
268
|
test_files:
|
266
269
|
- features/replacer.feature
|
267
270
|
- features/support/env.rb
|
@@ -282,4 +285,6 @@ test_files:
|
|
282
285
|
- spec/vcr/ReplacerBot_Replacer/search/saves_the_text_of_its_tweets.yml
|
283
286
|
- spec/vcr/ReplacerBot_Replacer/search/searches_for_tweets.yml
|
284
287
|
- spec/vcr/ReplacerBot_Replacer/search/uniqs_its_tweets.yml
|
288
|
+
- spec/vcr/ReplacerBot_Replacer/tweet/actually_sends_tweets.yml
|
285
289
|
- spec/vcr/ReplacerBot_Replacer/tweet/prepares_sensible_tweets.yml
|
290
|
+
- spec/vcr/ReplacerBot_Replacer/tweet/sends_no_tweets_on_a_dry-run.yml
|