augury 1.1.1 → 1.2.0
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/.codeclimate.yml +5 -1
- data/.github/workflows/ci.yml +30 -0
- data/.mdlrc +7 -0
- data/.rubocop.yml +15 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile +4 -2
- data/Gemfile.lock +75 -69
- data/README.md +5 -6
- data/augury.gemspec +3 -1
- data/bin/extract_creds +4 -1
- data/exe/augury +2 -0
- data/lib/augury/cli.rb +1 -0
- data/lib/augury/fortune.rb +5 -2
- data/lib/augury/version.rb +1 -1
- metadata +8 -6
- data/.travis.yml +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59bd84b6b102ff46342777c9a2525f3aab4bbac6ac0cfd2a9b608ace5c754fa2
|
|
4
|
+
data.tar.gz: 2ac6e27fd11e279f66a0e80e5ff2206859d47e160128bd26ad944f4e9d24caa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9da3e4c0dbf895ede6e40ff7ba9007180b0f08b44ce105ed402bd11b3a49b65122134c0c878d8f67cbae30d37bbf8f66139f5c8ea3abe09a054322e2e3c365c3
|
|
7
|
+
data.tar.gz: f1fd1dafceb38a517bd2072b8034aa34e81f45a3e4356dc98eda67a617debdde1e603d05f59dc38d38c2dbb755649501dc4225e857f9e906b3149975eadf3baf
|
data/.codeclimate.yml
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
on: [push, pull_request]
|
|
3
|
+
jobs:
|
|
4
|
+
test:
|
|
5
|
+
strategy:
|
|
6
|
+
fail-fast: false
|
|
7
|
+
matrix:
|
|
8
|
+
os: [ubuntu-latest]
|
|
9
|
+
ruby: [2.7, '3.0', '3.1']
|
|
10
|
+
runs-on: ${{ matrix.os }}
|
|
11
|
+
env:
|
|
12
|
+
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }}
|
|
13
|
+
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }}
|
|
14
|
+
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
|
|
15
|
+
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
|
|
16
|
+
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
17
|
+
steps:
|
|
18
|
+
- if: matrix.os == 'ubuntu-latest'
|
|
19
|
+
run: sudo apt-get install -y fortune
|
|
20
|
+
- uses: actions/checkout@v2
|
|
21
|
+
- uses: ruby/setup-ruby@v1
|
|
22
|
+
with:
|
|
23
|
+
ruby-version: ${{ matrix.ruby }}
|
|
24
|
+
bundler-cache: true
|
|
25
|
+
- run: bundle exec rake
|
|
26
|
+
- if: matrix.os == 'ubuntu-latest' && matrix.ruby == '3.1'
|
|
27
|
+
run: |
|
|
28
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
29
|
+
chmod +x ./cc-test-reporter
|
|
30
|
+
./cc-test-reporter after-build
|
data/.mdlrc
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Ignore the following rules
|
|
2
|
+
#
|
|
3
|
+
# MD013: No line length restriction, use Semantic Line Feeds
|
|
4
|
+
# http://rhodesmill.org/brandon/2012/one-sentence-per-line/
|
|
5
|
+
# MD014: Allow for cli examples to start with dollar sign
|
|
6
|
+
# MD034: Never run into this issue and GitHub supports it fine
|
|
7
|
+
rules "~MD013", "~MD014", "~MD034"
|
data/.rubocop.yml
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
AllCops:
|
|
2
|
-
TargetRubyVersion: 2.
|
|
2
|
+
TargetRubyVersion: 2.7
|
|
3
3
|
Exclude:
|
|
4
4
|
- bin/**/*
|
|
5
5
|
- vendor/**/*
|
|
6
|
+
NewCops: enable
|
|
6
7
|
|
|
7
8
|
Style/TrailingCommaInArguments:
|
|
8
9
|
EnforcedStyleForMultiline: comma
|
|
@@ -16,6 +17,9 @@ Style/TrailingCommaInArrayLiteral:
|
|
|
16
17
|
Style/RedundantSelf:
|
|
17
18
|
Enabled: false
|
|
18
19
|
|
|
20
|
+
Style/Documentation:
|
|
21
|
+
Enabled: false
|
|
22
|
+
|
|
19
23
|
Layout/IndentationWidth:
|
|
20
24
|
Enabled: false
|
|
21
25
|
|
|
@@ -40,6 +44,15 @@ Layout/CaseIndentation:
|
|
|
40
44
|
EnforcedStyle: end
|
|
41
45
|
IndentOneStep: true
|
|
42
46
|
|
|
47
|
+
Metrics/AbcSize:
|
|
48
|
+
Max: 25
|
|
49
|
+
|
|
50
|
+
Metrics/CyclomaticComplexity:
|
|
51
|
+
Max: 25
|
|
52
|
+
|
|
53
|
+
Metrics/MethodLength:
|
|
54
|
+
Max: 20
|
|
55
|
+
|
|
43
56
|
# Ignore for rspec
|
|
44
57
|
Metrics/BlockLength:
|
|
45
|
-
|
|
58
|
+
IgnoredMethods: ['describe', 'context']
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.7.
|
|
1
|
+
2.7.6
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
|
@@ -9,7 +9,7 @@ gem 'rake'
|
|
|
9
9
|
|
|
10
10
|
# Testing
|
|
11
11
|
gem 'rspec', '~>3.0'
|
|
12
|
-
gem 'simplecov'
|
|
12
|
+
gem 'simplecov', '< 0.18'
|
|
13
13
|
gem 'vcr'
|
|
14
14
|
gem 'webmock'
|
|
15
15
|
|
|
@@ -20,7 +20,9 @@ gem 'pry-byebug'
|
|
|
20
20
|
gem 'pry-doc'
|
|
21
21
|
|
|
22
22
|
# Linting / completion
|
|
23
|
-
gem '
|
|
23
|
+
gem 'bundler-audit'
|
|
24
|
+
# This has to match the code climate channel in .codeclimate.yml
|
|
25
|
+
gem 'rubocop', '1.31.0'
|
|
24
26
|
gem 'rubocop-rake'
|
|
25
27
|
gem 'rubocop-rspec'
|
|
26
28
|
gem 'solargraph'
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
augury (1.
|
|
4
|
+
augury (1.2.0)
|
|
5
5
|
thor (~> 1.0.0)
|
|
6
6
|
twitter (~> 7.0)
|
|
7
7
|
word_wrap (~> 1.0)
|
|
@@ -9,24 +9,27 @@ PATH
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
addressable (2.
|
|
13
|
-
public_suffix (>= 2.0.2, <
|
|
12
|
+
addressable (2.8.1)
|
|
13
|
+
public_suffix (>= 2.0.2, < 6.0)
|
|
14
14
|
ast (2.4.2)
|
|
15
|
-
awesome_print (1.
|
|
16
|
-
backport (1.
|
|
17
|
-
benchmark (0.
|
|
15
|
+
awesome_print (1.9.2)
|
|
16
|
+
backport (1.2.0)
|
|
17
|
+
benchmark (0.2.0)
|
|
18
18
|
buftok (0.2.0)
|
|
19
|
+
bundler-audit (0.9.1)
|
|
20
|
+
bundler (>= 1.2.0, < 3)
|
|
21
|
+
thor (~> 1.0)
|
|
19
22
|
byebug (11.1.3)
|
|
20
23
|
coderay (1.1.3)
|
|
21
24
|
crack (0.4.5)
|
|
22
25
|
rexml
|
|
23
|
-
diff-lcs (1.
|
|
24
|
-
docile (1.
|
|
26
|
+
diff-lcs (1.5.0)
|
|
27
|
+
docile (1.4.0)
|
|
25
28
|
domain_name (0.5.20190701)
|
|
26
29
|
unf (>= 0.0.5, < 1.0.0)
|
|
27
30
|
e2mmap (0.1.0)
|
|
28
31
|
equalizer (0.0.11)
|
|
29
|
-
ffi (1.
|
|
32
|
+
ffi (1.15.5)
|
|
30
33
|
ffi-compiler (1.0.1)
|
|
31
34
|
ffi (>= 1.0.0)
|
|
32
35
|
rake
|
|
@@ -36,90 +39,90 @@ GEM
|
|
|
36
39
|
http-cookie (~> 1.0)
|
|
37
40
|
http-form_data (~> 2.2)
|
|
38
41
|
http-parser (~> 1.2.0)
|
|
39
|
-
http-cookie (1.0.
|
|
42
|
+
http-cookie (1.0.5)
|
|
40
43
|
domain_name (~> 0.5)
|
|
41
44
|
http-form_data (2.3.0)
|
|
42
45
|
http-parser (1.2.3)
|
|
43
46
|
ffi-compiler (>= 1.0, < 2.0)
|
|
44
47
|
http_parser.rb (0.6.0)
|
|
45
48
|
jaro_winkler (1.5.4)
|
|
46
|
-
|
|
49
|
+
json (2.6.2)
|
|
50
|
+
kramdown (2.4.0)
|
|
47
51
|
rexml
|
|
48
52
|
kramdown-parser-gfm (1.1.0)
|
|
49
53
|
kramdown (~> 2.0)
|
|
50
54
|
memoizable (0.4.2)
|
|
51
55
|
thread_safe (~> 0.3, >= 0.3.1)
|
|
52
56
|
method_source (1.0.0)
|
|
53
|
-
mini_portile2 (2.
|
|
54
|
-
multipart-post (2.
|
|
57
|
+
mini_portile2 (2.8.0)
|
|
58
|
+
multipart-post (2.2.3)
|
|
55
59
|
naught (1.1.0)
|
|
56
|
-
nokogiri (1.
|
|
57
|
-
mini_portile2 (~> 2.
|
|
60
|
+
nokogiri (1.13.9)
|
|
61
|
+
mini_portile2 (~> 2.8.0)
|
|
58
62
|
racc (~> 1.4)
|
|
59
|
-
parallel (1.
|
|
60
|
-
parser (3.
|
|
63
|
+
parallel (1.22.1)
|
|
64
|
+
parser (3.1.2.1)
|
|
61
65
|
ast (~> 2.4.1)
|
|
62
|
-
pry (0.
|
|
66
|
+
pry (0.14.1)
|
|
63
67
|
coderay (~> 1.1)
|
|
64
68
|
method_source (~> 1.0)
|
|
65
69
|
pry-awesome_print (9.6.11)
|
|
66
70
|
awesome_print (>= 1.1.0, < 999)
|
|
67
71
|
pry (>= 0.9.0, < 999)
|
|
68
|
-
pry-byebug (3.
|
|
72
|
+
pry-byebug (3.10.1)
|
|
69
73
|
byebug (~> 11.0)
|
|
70
|
-
pry (
|
|
71
|
-
pry-doc (1.
|
|
74
|
+
pry (>= 0.13, < 0.15)
|
|
75
|
+
pry-doc (1.3.0)
|
|
72
76
|
pry (~> 0.11)
|
|
73
77
|
yard (~> 0.9.11)
|
|
74
|
-
public_suffix (
|
|
75
|
-
racc (1.
|
|
76
|
-
rainbow (3.
|
|
77
|
-
rake (13.0.
|
|
78
|
-
regexp_parser (2.0
|
|
79
|
-
reverse_markdown (2.
|
|
78
|
+
public_suffix (5.0.0)
|
|
79
|
+
racc (1.6.0)
|
|
80
|
+
rainbow (3.1.1)
|
|
81
|
+
rake (13.0.6)
|
|
82
|
+
regexp_parser (2.6.0)
|
|
83
|
+
reverse_markdown (2.1.1)
|
|
80
84
|
nokogiri
|
|
81
|
-
rexml (3.2.
|
|
82
|
-
rspec (3.
|
|
83
|
-
rspec-core (~> 3.
|
|
84
|
-
rspec-expectations (~> 3.
|
|
85
|
-
rspec-mocks (~> 3.
|
|
86
|
-
rspec-core (3.
|
|
87
|
-
rspec-support (~> 3.
|
|
88
|
-
rspec-expectations (3.
|
|
85
|
+
rexml (3.2.5)
|
|
86
|
+
rspec (3.11.0)
|
|
87
|
+
rspec-core (~> 3.11.0)
|
|
88
|
+
rspec-expectations (~> 3.11.0)
|
|
89
|
+
rspec-mocks (~> 3.11.0)
|
|
90
|
+
rspec-core (3.11.0)
|
|
91
|
+
rspec-support (~> 3.11.0)
|
|
92
|
+
rspec-expectations (3.11.1)
|
|
89
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
90
|
-
rspec-support (~> 3.
|
|
91
|
-
rspec-mocks (3.
|
|
94
|
+
rspec-support (~> 3.11.0)
|
|
95
|
+
rspec-mocks (3.11.1)
|
|
92
96
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
93
|
-
rspec-support (~> 3.
|
|
94
|
-
rspec-support (3.
|
|
95
|
-
rubocop (
|
|
97
|
+
rspec-support (~> 3.11.0)
|
|
98
|
+
rspec-support (3.11.1)
|
|
99
|
+
rubocop (1.31.0)
|
|
96
100
|
parallel (~> 1.10)
|
|
97
|
-
parser (>=
|
|
101
|
+
parser (>= 3.1.0.0)
|
|
98
102
|
rainbow (>= 2.2.2, < 4.0)
|
|
99
|
-
regexp_parser (>= 1.
|
|
100
|
-
rexml
|
|
101
|
-
rubocop-ast (>=
|
|
103
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
104
|
+
rexml (>= 3.2.5, < 4.0)
|
|
105
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
|
102
106
|
ruby-progressbar (~> 1.7)
|
|
103
|
-
unicode-display_width (>= 1.4.0, <
|
|
104
|
-
rubocop-ast (1.
|
|
105
|
-
parser (>=
|
|
106
|
-
rubocop-rake (0.
|
|
107
|
-
rubocop
|
|
108
|
-
rubocop-rspec (
|
|
109
|
-
rubocop (~>
|
|
110
|
-
rubocop-ast (>= 0.7.1)
|
|
107
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
108
|
+
rubocop-ast (1.23.0)
|
|
109
|
+
parser (>= 3.1.1.0)
|
|
110
|
+
rubocop-rake (0.6.0)
|
|
111
|
+
rubocop (~> 1.0)
|
|
112
|
+
rubocop-rspec (2.12.1)
|
|
113
|
+
rubocop (~> 1.31)
|
|
111
114
|
ruby-progressbar (1.11.0)
|
|
112
115
|
simple_oauth (0.3.1)
|
|
113
|
-
simplecov (0.
|
|
116
|
+
simplecov (0.17.1)
|
|
114
117
|
docile (~> 1.1)
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
simplecov-html (0.
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
backport (~> 1.1)
|
|
118
|
+
json (>= 1.8, < 3)
|
|
119
|
+
simplecov-html (~> 0.10.0)
|
|
120
|
+
simplecov-html (0.10.2)
|
|
121
|
+
solargraph (0.47.2)
|
|
122
|
+
backport (~> 1.2)
|
|
121
123
|
benchmark
|
|
122
124
|
bundler (>= 1.17.2)
|
|
125
|
+
diff-lcs (~> 1.4)
|
|
123
126
|
e2mmap
|
|
124
127
|
jaro_winkler (~> 1.5)
|
|
125
128
|
kramdown (~> 2.3)
|
|
@@ -132,7 +135,7 @@ GEM
|
|
|
132
135
|
yard (~> 0.9, >= 0.9.24)
|
|
133
136
|
thor (1.0.1)
|
|
134
137
|
thread_safe (0.3.6)
|
|
135
|
-
tilt (2.0.
|
|
138
|
+
tilt (2.0.11)
|
|
136
139
|
twitter (7.0.0)
|
|
137
140
|
addressable (~> 2.3)
|
|
138
141
|
buftok (~> 0.2.0)
|
|
@@ -146,34 +149,37 @@ GEM
|
|
|
146
149
|
simple_oauth (~> 0.3.0)
|
|
147
150
|
unf (0.1.4)
|
|
148
151
|
unf_ext
|
|
149
|
-
unf_ext (0.0.
|
|
150
|
-
unicode-display_width (
|
|
151
|
-
vcr (6.
|
|
152
|
-
webmock (3.
|
|
153
|
-
addressable (>= 2.
|
|
152
|
+
unf_ext (0.0.8.2)
|
|
153
|
+
unicode-display_width (2.3.0)
|
|
154
|
+
vcr (6.1.0)
|
|
155
|
+
webmock (3.18.1)
|
|
156
|
+
addressable (>= 2.8.0)
|
|
154
157
|
crack (>= 0.3.2)
|
|
155
158
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
159
|
+
webrick (1.7.0)
|
|
156
160
|
word_wrap (1.0.0)
|
|
157
|
-
yard (0.9.
|
|
161
|
+
yard (0.9.28)
|
|
162
|
+
webrick (~> 1.7.0)
|
|
158
163
|
|
|
159
164
|
PLATFORMS
|
|
160
165
|
ruby
|
|
161
166
|
|
|
162
167
|
DEPENDENCIES
|
|
163
168
|
augury!
|
|
169
|
+
bundler-audit
|
|
164
170
|
pry
|
|
165
171
|
pry-awesome_print
|
|
166
172
|
pry-byebug
|
|
167
173
|
pry-doc
|
|
168
174
|
rake
|
|
169
175
|
rspec (~> 3.0)
|
|
170
|
-
rubocop (= 0
|
|
176
|
+
rubocop (= 1.31.0)
|
|
171
177
|
rubocop-rake
|
|
172
178
|
rubocop-rspec
|
|
173
|
-
simplecov
|
|
179
|
+
simplecov (< 0.18)
|
|
174
180
|
solargraph
|
|
175
181
|
vcr
|
|
176
182
|
webmock
|
|
177
183
|
|
|
178
184
|
BUNDLED WITH
|
|
179
|
-
2.
|
|
185
|
+
2.3.24
|
data/README.md
CHANGED
|
@@ -2,16 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://codeclimate.com/github/claytron/augury/maintainability)
|
|
4
4
|
[](https://codeclimate.com/github/claytron/augury/test_coverage)
|
|
5
|
-
|
|
5
|
+

|
|
6
6
|
|
|
7
7
|
Have you ever wanted to turn a twitter account into a fortune file?
|
|
8
8
|
Well, today is your lucky day!
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
As per
|
|
14
|
-
</blockquote>
|
|
10
|
+
> Augury is the practice from ancient Roman religion of
|
|
11
|
+
> interpreting omens from the observed flight of birds.
|
|
12
|
+
>
|
|
13
|
+
> As per [Wikipedia](https://en.wikipedia.org/wiki/Augury)
|
|
15
14
|
|
|
16
15
|
There are a lot of really funny twitter accounts out there.
|
|
17
16
|
Let's just pick one and get started.
|
data/augury.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = 'This gem turns a twitter feed into a fortune file that you can use with the fortune program'
|
|
13
13
|
spec.homepage = 'https://github.com/claytron/augury'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
18
|
spec.bindir = 'exe'
|
|
@@ -20,8 +20,10 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.require_paths = ['lib']
|
|
21
21
|
|
|
22
22
|
# Actual dependencies
|
|
23
|
+
# TODO: The options override in Augury::CLI doesn't work in Thor 1.1+
|
|
23
24
|
spec.add_dependency 'thor', '~>1.0.0'
|
|
24
25
|
spec.add_dependency 'twitter', '~>7.0'
|
|
25
26
|
## For the word_wrap function
|
|
26
27
|
spec.add_dependency 'word_wrap', '~>1.0'
|
|
28
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
27
29
|
end
|
data/bin/extract_creds
CHANGED
|
@@ -4,7 +4,10 @@
|
|
|
4
4
|
require 'yaml'
|
|
5
5
|
|
|
6
6
|
begin
|
|
7
|
-
augury_config = YAML.load_file(
|
|
7
|
+
augury_config = YAML.load_file(
|
|
8
|
+
File.expand_path('~/.augury.yml'),
|
|
9
|
+
permitted_classes: [Regexp],
|
|
10
|
+
)
|
|
8
11
|
puts augury_config['twitter'].collect { |k, v| "export TWITTER_#{k.upcase}=#{v}" }.join("\n")
|
|
9
12
|
rescue Errno::ENOENT
|
|
10
13
|
puts 'echo "No config file present (~/.augury.yml) no env vars set"'
|
data/exe/augury
CHANGED
data/lib/augury/cli.rb
CHANGED
data/lib/augury/fortune.rb
CHANGED
|
@@ -27,6 +27,9 @@ module Augury
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def retrieve_tweets
|
|
30
|
+
# Make sure the case of the name is correct to avoid errors in the Twitter API
|
|
31
|
+
screen_name = @twitter.user(@username).screen_name
|
|
32
|
+
|
|
30
33
|
@tweets = collect_with_max_id do |max_id|
|
|
31
34
|
options = {
|
|
32
35
|
count: 200,
|
|
@@ -35,7 +38,7 @@ module Augury
|
|
|
35
38
|
exclude_replies: !@config[:replies],
|
|
36
39
|
}
|
|
37
40
|
options[:max_id] = max_id unless max_id.nil?
|
|
38
|
-
@twitter.user_timeline(
|
|
41
|
+
@twitter.user_timeline(screen_name, options)
|
|
39
42
|
end
|
|
40
43
|
rescue Twitter::Error::TooManyRequests => e
|
|
41
44
|
reset_length = e.rate_limit.reset_in + 1
|
|
@@ -89,7 +92,7 @@ module Augury
|
|
|
89
92
|
|
|
90
93
|
def transforms
|
|
91
94
|
all_transforms = []
|
|
92
|
-
all_transforms << [
|
|
95
|
+
all_transforms << [%r{https?://[^\s]+}, ''] if @config[:remove_links]
|
|
93
96
|
return all_transforms unless @config[:apply_transforms]
|
|
94
97
|
|
|
95
98
|
all_transforms.push(*@config.dig('transforms', @username) || [])
|
data/lib/augury/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: augury
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clayton Parker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -62,14 +62,15 @@ extensions: []
|
|
|
62
62
|
extra_rdoc_files: []
|
|
63
63
|
files:
|
|
64
64
|
- ".codeclimate.yml"
|
|
65
|
+
- ".github/workflows/ci.yml"
|
|
65
66
|
- ".gitignore"
|
|
67
|
+
- ".mdlrc"
|
|
66
68
|
- ".rbenv-gemsets"
|
|
67
69
|
- ".rspec"
|
|
68
70
|
- ".rubocop.yml"
|
|
69
71
|
- ".ruby-gemset"
|
|
70
72
|
- ".ruby-version"
|
|
71
73
|
- ".solargraph.yml"
|
|
72
|
-
- ".travis.yml"
|
|
73
74
|
- CHANGELOG.md
|
|
74
75
|
- Gemfile
|
|
75
76
|
- Gemfile.lock
|
|
@@ -89,7 +90,8 @@ files:
|
|
|
89
90
|
homepage: https://github.com/claytron/augury
|
|
90
91
|
licenses:
|
|
91
92
|
- MIT
|
|
92
|
-
metadata:
|
|
93
|
+
metadata:
|
|
94
|
+
rubygems_mfa_required: 'true'
|
|
93
95
|
post_install_message:
|
|
94
96
|
rdoc_options: []
|
|
95
97
|
require_paths:
|
|
@@ -98,14 +100,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
98
100
|
requirements:
|
|
99
101
|
- - ">="
|
|
100
102
|
- !ruby/object:Gem::Version
|
|
101
|
-
version: 2.
|
|
103
|
+
version: 2.7.0
|
|
102
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
105
|
requirements:
|
|
104
106
|
- - ">="
|
|
105
107
|
- !ruby/object:Gem::Version
|
|
106
108
|
version: '0'
|
|
107
109
|
requirements: []
|
|
108
|
-
rubygems_version: 3.
|
|
110
|
+
rubygems_version: 3.3.24
|
|
109
111
|
signing_key:
|
|
110
112
|
specification_version: 4
|
|
111
113
|
summary: Turn a twitter feed into a fortune file
|
data/.travis.yml
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
language: ruby
|
|
2
|
-
rvm:
|
|
3
|
-
- 3.0
|
|
4
|
-
- 2.7
|
|
5
|
-
- 2.6
|
|
6
|
-
before_install:
|
|
7
|
-
- sudo apt-get -y install fortune
|
|
8
|
-
before_script:
|
|
9
|
-
- export PATH=$PATH:/usr/games
|
|
10
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
11
|
-
- chmod +x ./cc-test-reporter
|
|
12
|
-
- ./cc-test-reporter before-build
|
|
13
|
-
script:
|
|
14
|
-
- bundle exec rspec
|
|
15
|
-
after_script:
|
|
16
|
-
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|