automatic 14.12.2 → 26.08
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 +5 -5
- data/README.md +635 -83
- data/VERSION +1 -1
- data/automatic.gemspec +109 -248
- data/bin/automatic +20 -139
- data/config/feed2console.yml +10 -4
- data/config/feed2markdown.yml +41 -0
- data/doc/AI_TUTORIAL.md +518 -0
- data/doc/BASIC_DESIGN.md +516 -0
- data/doc/COPYING.LESSER +165 -0
- data/doc/DEPLOYMENT.md +824 -0
- data/doc/LICENSE.md +14 -0
- data/doc/PLUGINS.md +1875 -0
- data/doc/PLUGIN_DEVELOPMENT.md +86 -0
- data/doc/POLICY.md +857 -0
- data/doc/QUICKSTART.md +256 -0
- data/doc/RELEASING.md +381 -0
- data/doc/REQUIREMENTS.md +526 -0
- data/doc/VERSIONS +208 -0
- data/lib/automatic/cli.rb +248 -0
- data/lib/automatic/environment.rb +31 -5
- data/lib/automatic/feed_maker.rb +10 -9
- data/lib/automatic/feed_parser.rb +51 -35
- data/lib/automatic/http.rb +107 -0
- data/lib/automatic/log.rb +49 -18
- data/lib/automatic/opml.rb +3 -1
- data/lib/automatic/pipeline.rb +63 -32
- data/lib/automatic/recipe.rb +56 -17
- data/lib/automatic/version.rb +14 -1
- data/lib/automatic.rb +78 -20
- data/plugins/custom_feed/svn_log.rb +73 -32
- data/plugins/custom_feed/web.rb +348 -0
- data/plugins/filter/absolute_uri.rb +43 -27
- data/plugins/filter/accept.rb +38 -45
- data/plugins/filter/claude.rb +217 -0
- data/plugins/filter/clear.rb +12 -8
- data/plugins/filter/description_link.rb +49 -51
- data/plugins/filter/full_feed.rb +158 -52
- data/plugins/filter/gemini.rb +216 -0
- data/plugins/filter/github_feed.rb +38 -26
- data/plugins/filter/ignore.rb +33 -44
- data/plugins/filter/image.rb +36 -25
- data/plugins/filter/image_source.rb +58 -52
- data/plugins/filter/join.rb +107 -0
- data/plugins/filter/one.rb +19 -26
- data/plugins/filter/open_ai.rb +198 -0
- data/plugins/filter/rand.rb +16 -17
- data/plugins/filter/sakura_ai.rb +205 -0
- data/plugins/filter/sanitize.rb +29 -34
- data/plugins/filter/sort.rb +20 -27
- data/plugins/filter/tumblr_resize.rb +31 -23
- data/plugins/notify/ikachan.rb +86 -48
- data/plugins/provide/fluentd.rb +43 -24
- data/plugins/publish/amazon_s3.rb +73 -40
- data/plugins/publish/console.rb +19 -16
- data/plugins/publish/console_link.rb +20 -17
- data/plugins/publish/eject.rb +48 -26
- data/plugins/publish/fluentd.rb +50 -30
- data/plugins/publish/hatena_bookmark.rb +88 -71
- data/plugins/publish/instapaper.rb +69 -59
- data/plugins/publish/markdown.rb +278 -0
- data/plugins/publish/memcached.rb +35 -29
- data/plugins/store/database.rb +50 -48
- data/plugins/store/digest.rb +212 -0
- data/plugins/store/file.rb +99 -68
- data/plugins/store/full_text.rb +32 -25
- data/plugins/store/permalink.rb +18 -22
- data/plugins/subscription/feed.rb +34 -21
- data/plugins/subscription/link.rb +31 -32
- data/plugins/subscription/text.rb +32 -46
- data/plugins/subscription/tumblr.rb +55 -44
- data/plugins/subscription/xml.rb +40 -36
- metadata +108 -321
- data/Gemfile +0 -38
- data/Rakefile +0 -59
- data/doc/ChangeLog +0 -303
- data/doc/PLUGINS +0 -750
- data/doc/PLUGINS.ja +0 -753
- data/doc/README +0 -511
- data/doc/README.ja +0 -519
- data/plugins/filter/google_news.rb +0 -50
- data/plugins/publish/google_calendar.rb +0 -84
- data/plugins/publish/hipchat.rb +0 -46
- data/plugins/publish/pocket.rb +0 -45
- data/plugins/publish/twitter.rb +0 -58
- data/plugins/subscription/chan_toru.rb +0 -57
- data/plugins/subscription/g_guide.rb +0 -57
- data/plugins/subscription/pocket.rb +0 -51
- data/plugins/subscription/twitter.rb +0 -69
- data/plugins/subscription/twitter_search.rb +0 -50
- data/plugins/subscription/weather.rb +0 -33
- data/script/build +0 -84
- data/spec/fixtures/sampleFeeds.tsv +0 -1
- data/spec/fixtures/sampleFeeds2.tsv +0 -2
- data/spec/fixtures/sampleRecipe.yml +0 -24
- data/spec/lib/automatic/log_spec.rb +0 -32
- data/spec/lib/automatic/pipeline_spec.rb +0 -68
- data/spec/lib/automatic/recipe_spec.rb +0 -40
- data/spec/lib/automatic_spec.rb +0 -99
- data/spec/plugins/custom_feed/svn_log_spec.rb +0 -31
- data/spec/plugins/filter/absolute_uri_spec.rb +0 -61
- data/spec/plugins/filter/accept_spec.rb +0 -331
- data/spec/plugins/filter/clear_spec.rb +0 -49
- data/spec/plugins/filter/description_link_spec.rb +0 -138
- data/spec/plugins/filter/full_feed_spec.rb +0 -129
- data/spec/plugins/filter/github_feed_spec.rb +0 -55
- data/spec/plugins/filter/google_news_spec.rb +0 -69
- data/spec/plugins/filter/ignore_spec.rb +0 -328
- data/spec/plugins/filter/image_source_spec.rb +0 -89
- data/spec/plugins/filter/image_spec.rb +0 -65
- data/spec/plugins/filter/one_spec.rb +0 -71
- data/spec/plugins/filter/rand_spec.rb +0 -52
- data/spec/plugins/filter/sanitize_spec.rb +0 -153
- data/spec/plugins/filter/sort_spec.rb +0 -189
- data/spec/plugins/filter/tumblr_resize_spec.rb +0 -109
- data/spec/plugins/notify/ikachan_spec.rb +0 -58
- data/spec/plugins/provide/fluentd_spec.rb +0 -49
- data/spec/plugins/publish/amazon_s3_spec.rb +0 -40
- data/spec/plugins/publish/console_spec.rb +0 -30
- data/spec/plugins/publish/eject_spec.rb +0 -40
- data/spec/plugins/publish/fluentd_spec.rb +0 -40
- data/spec/plugins/publish/google_calendar_spec.rb +0 -83
- data/spec/plugins/publish/hatena_bookmark_spec.rb +0 -134
- data/spec/plugins/publish/hipchat_spec.rb +0 -69
- data/spec/plugins/publish/instapaper_spec.rb +0 -82
- data/spec/plugins/publish/memcached_spec.rb +0 -63
- data/spec/plugins/publish/pocket_spec.rb +0 -51
- data/spec/plugins/publish/twitter_spec.rb +0 -73
- data/spec/plugins/store/file_spec.rb +0 -58
- data/spec/plugins/store/full_text_spec.rb +0 -152
- data/spec/plugins/store/permalink_spec.rb +0 -206
- data/spec/plugins/subscription/chan_toru_spec.rb +0 -56
- data/spec/plugins/subscription/feed_spec.rb +0 -71
- data/spec/plugins/subscription/g_guide_spec.rb +0 -82
- data/spec/plugins/subscription/link_spec.rb +0 -72
- data/spec/plugins/subscription/pocket_spec.rb +0 -57
- data/spec/plugins/subscription/text_spec.rb +0 -84
- data/spec/plugins/subscription/tumblr_spec.rb +0 -74
- data/spec/plugins/subscription/twitter_search_spec.rb +0 -57
- data/spec/plugins/subscription/twitter_spec.rb +0 -73
- data/spec/plugins/subscription/weather_spec.rb +0 -44
- data/spec/plugins/subscription/xml_spec.rb +0 -84
- data/spec/spec_helper.rb +0 -106
- data/spec/user_dir/plugins/store/mock.rb +0 -16
- data/test/fixtures/sampleOPML.xml +0 -11
- data/test/integration/test_absoluteurl.yml +0 -25
- data/test/integration/test_activerecord.yml +0 -24
- data/test/integration/test_add_pocket.yml +0 -26
- data/test/integration/test_chan_toru.yml +0 -21
- data/test/integration/test_descriptionlink.yml +0 -21
- data/test/integration/test_fluentd.yml +0 -22
- data/test/integration/test_fulltext.yml +0 -30
- data/test/integration/test_google_news.yml +0 -21
- data/test/integration/test_googlealert.yml +0 -21
- data/test/integration/test_hatenabookmark.yml +0 -30
- data/test/integration/test_ignore.yml +0 -25
- data/test/integration/test_ignore2.yml +0 -22
- data/test/integration/test_image2local.yml +0 -33
- data/test/integration/test_instapaper.yml +0 -26
- data/test/integration/test_link2local.yml +0 -34
- data/test/integration/test_one.yml +0 -23
- data/test/integration/test_pocket.yml +0 -22
- data/test/integration/test_rand.yml +0 -21
- data/test/integration/test_sanitize.yml +0 -23
- data/test/integration/test_sort.yml +0 -36
- data/test/integration/test_svnlog.yml +0 -15
- data/test/integration/test_text2feed.yml +0 -36
- data/test/integration/test_tumblr2local.yml +0 -43
- data/test/integration/test_twitter_search.yml +0 -22
- data/test/integration/test_weather.yml +0 -19
- data/test/integration/test_xml2fluentd.yml +0 -21
- data/vendor/.gitkeep +0 -0
metadata
CHANGED
|
@@ -1,369 +1,242 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: automatic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: '26.08'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- id774
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: json
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.8.1
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.8.1
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: sqlite3
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.3.10
|
|
34
|
-
type: :runtime
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1.3.10
|
|
41
12
|
- !ruby/object:Gem::Dependency
|
|
42
13
|
name: activesupport
|
|
43
14
|
requirement: !ruby/object:Gem::Requirement
|
|
44
15
|
requirements:
|
|
45
|
-
- - "
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: 4.1.8
|
|
48
|
-
type: :runtime
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
16
|
+
- - ">="
|
|
53
17
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
55
|
-
-
|
|
56
|
-
name: activerecord
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
18
|
+
version: '7.1'
|
|
19
|
+
- - "<"
|
|
60
20
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
21
|
+
version: '9.0'
|
|
62
22
|
type: :runtime
|
|
63
23
|
prerelease: false
|
|
64
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
25
|
requirements:
|
|
66
|
-
- - "
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: 4.1.8
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: hashie
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - "~>"
|
|
26
|
+
- - ">="
|
|
74
27
|
- !ruby/object:Gem::Version
|
|
75
|
-
version:
|
|
76
|
-
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - "~>"
|
|
28
|
+
version: '7.1'
|
|
29
|
+
- - "<"
|
|
81
30
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
31
|
+
version: '9.0'
|
|
83
32
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
33
|
+
name: hashie
|
|
85
34
|
requirement: !ruby/object:Gem::Requirement
|
|
86
35
|
requirements:
|
|
87
|
-
- - "
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.1.2
|
|
90
|
-
type: :runtime
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
-
requirements:
|
|
94
|
-
- - "~>"
|
|
36
|
+
- - ">="
|
|
95
37
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0
|
|
97
|
-
-
|
|
98
|
-
name: xml-simple
|
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
|
100
|
-
requirements:
|
|
101
|
-
- - "~>"
|
|
38
|
+
version: '4.0'
|
|
39
|
+
- - "<"
|
|
102
40
|
- !ruby/object:Gem::Version
|
|
103
|
-
version:
|
|
41
|
+
version: '6.0'
|
|
104
42
|
type: :runtime
|
|
105
43
|
prerelease: false
|
|
106
44
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
45
|
requirements:
|
|
108
|
-
- - "
|
|
109
|
-
- !ruby/object:Gem::Version
|
|
110
|
-
version: 1.1.4
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: feedbag
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
|
-
- - "~>"
|
|
46
|
+
- - ">="
|
|
116
47
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: 0
|
|
118
|
-
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - "~>"
|
|
48
|
+
version: '4.0'
|
|
49
|
+
- - "<"
|
|
123
50
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: 0
|
|
51
|
+
version: '6.0'
|
|
125
52
|
- !ruby/object:Gem::Dependency
|
|
126
|
-
name:
|
|
53
|
+
name: rexml
|
|
127
54
|
requirement: !ruby/object:Gem::Requirement
|
|
128
55
|
requirements:
|
|
129
|
-
- - "
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: 1.6.5
|
|
132
|
-
type: :runtime
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - "~>"
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: 1.6.5
|
|
139
|
-
- !ruby/object:Gem::Dependency
|
|
140
|
-
name: sanitize
|
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
|
142
|
-
requirements:
|
|
143
|
-
- - "~>"
|
|
144
|
-
- !ruby/object:Gem::Version
|
|
145
|
-
version: 3.1.0
|
|
146
|
-
type: :runtime
|
|
147
|
-
prerelease: false
|
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
-
requirements:
|
|
150
|
-
- - "~>"
|
|
56
|
+
- - ">="
|
|
151
57
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: 3.
|
|
153
|
-
-
|
|
154
|
-
name: faraday
|
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
|
156
|
-
requirements:
|
|
157
|
-
- - "~>"
|
|
58
|
+
version: '3.2'
|
|
59
|
+
- - "<"
|
|
158
60
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 0
|
|
61
|
+
version: '4.0'
|
|
160
62
|
type: :runtime
|
|
161
63
|
prerelease: false
|
|
162
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
65
|
requirements:
|
|
164
|
-
- - "
|
|
165
|
-
- !ruby/object:Gem::Version
|
|
166
|
-
version: 0.8.9
|
|
167
|
-
- !ruby/object:Gem::Dependency
|
|
168
|
-
name: twitter
|
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
|
170
|
-
requirements:
|
|
171
|
-
- - "~>"
|
|
66
|
+
- - ">="
|
|
172
67
|
- !ruby/object:Gem::Version
|
|
173
|
-
version:
|
|
174
|
-
|
|
175
|
-
prerelease: false
|
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
-
requirements:
|
|
178
|
-
- - "~>"
|
|
68
|
+
version: '3.2'
|
|
69
|
+
- - "<"
|
|
179
70
|
- !ruby/object:Gem::Version
|
|
180
|
-
version: 4.
|
|
71
|
+
version: '4.0'
|
|
181
72
|
- !ruby/object:Gem::Dependency
|
|
182
|
-
name:
|
|
73
|
+
name: rss
|
|
183
74
|
requirement: !ruby/object:Gem::Requirement
|
|
184
75
|
requirements:
|
|
185
|
-
- - "
|
|
186
|
-
- !ruby/object:Gem::Version
|
|
187
|
-
version: 0.0.5
|
|
188
|
-
type: :runtime
|
|
189
|
-
prerelease: false
|
|
190
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
-
requirements:
|
|
192
|
-
- - "~>"
|
|
76
|
+
- - ">="
|
|
193
77
|
- !ruby/object:Gem::Version
|
|
194
|
-
version: 0.
|
|
195
|
-
-
|
|
196
|
-
name: weather_hacker
|
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
|
198
|
-
requirements:
|
|
199
|
-
- - "~>"
|
|
78
|
+
version: '0.3'
|
|
79
|
+
- - "<"
|
|
200
80
|
- !ruby/object:Gem::Version
|
|
201
|
-
version:
|
|
81
|
+
version: '1.0'
|
|
202
82
|
type: :runtime
|
|
203
83
|
prerelease: false
|
|
204
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
205
85
|
requirements:
|
|
206
|
-
- - "
|
|
207
|
-
- !ruby/object:Gem::Version
|
|
208
|
-
version: 0.1.7
|
|
209
|
-
- !ruby/object:Gem::Dependency
|
|
210
|
-
name: hipchat
|
|
211
|
-
requirement: !ruby/object:Gem::Requirement
|
|
212
|
-
requirements:
|
|
213
|
-
- - "~>"
|
|
86
|
+
- - ">="
|
|
214
87
|
- !ruby/object:Gem::Version
|
|
215
|
-
version:
|
|
216
|
-
|
|
217
|
-
prerelease: false
|
|
218
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
219
|
-
requirements:
|
|
220
|
-
- - "~>"
|
|
88
|
+
version: '0.3'
|
|
89
|
+
- - "<"
|
|
221
90
|
- !ruby/object:Gem::Version
|
|
222
|
-
version: 1.
|
|
91
|
+
version: '1.0'
|
|
223
92
|
- !ruby/object:Gem::Dependency
|
|
224
|
-
name:
|
|
93
|
+
name: rake
|
|
225
94
|
requirement: !ruby/object:Gem::Requirement
|
|
226
95
|
requirements:
|
|
227
96
|
- - "~>"
|
|
228
97
|
- !ruby/object:Gem::Version
|
|
229
|
-
version: 0
|
|
230
|
-
type: :
|
|
98
|
+
version: '13.0'
|
|
99
|
+
type: :development
|
|
231
100
|
prerelease: false
|
|
232
101
|
version_requirements: !ruby/object:Gem::Requirement
|
|
233
102
|
requirements:
|
|
234
103
|
- - "~>"
|
|
235
104
|
- !ruby/object:Gem::Version
|
|
236
|
-
version: 0
|
|
105
|
+
version: '13.0'
|
|
237
106
|
- !ruby/object:Gem::Dependency
|
|
238
|
-
name:
|
|
107
|
+
name: rspec
|
|
239
108
|
requirement: !ruby/object:Gem::Requirement
|
|
240
109
|
requirements:
|
|
241
110
|
- - "~>"
|
|
242
111
|
- !ruby/object:Gem::Version
|
|
243
|
-
version:
|
|
244
|
-
type: :
|
|
112
|
+
version: '3.13'
|
|
113
|
+
type: :development
|
|
245
114
|
prerelease: false
|
|
246
115
|
version_requirements: !ruby/object:Gem::Requirement
|
|
247
116
|
requirements:
|
|
248
117
|
- - "~>"
|
|
249
118
|
- !ruby/object:Gem::Version
|
|
250
|
-
version:
|
|
119
|
+
version: '3.13'
|
|
251
120
|
- !ruby/object:Gem::Dependency
|
|
252
|
-
name:
|
|
121
|
+
name: rspec-collection_matchers
|
|
253
122
|
requirement: !ruby/object:Gem::Requirement
|
|
254
123
|
requirements:
|
|
255
124
|
- - "~>"
|
|
256
125
|
- !ruby/object:Gem::Version
|
|
257
|
-
version: 1.
|
|
258
|
-
type: :
|
|
126
|
+
version: '1.2'
|
|
127
|
+
type: :development
|
|
259
128
|
prerelease: false
|
|
260
129
|
version_requirements: !ruby/object:Gem::Requirement
|
|
261
130
|
requirements:
|
|
262
131
|
- - "~>"
|
|
263
132
|
- !ruby/object:Gem::Version
|
|
264
|
-
version: 1.
|
|
133
|
+
version: '1.2'
|
|
265
134
|
- !ruby/object:Gem::Dependency
|
|
266
|
-
name:
|
|
135
|
+
name: rspec-its
|
|
267
136
|
requirement: !ruby/object:Gem::Requirement
|
|
268
137
|
requirements:
|
|
269
138
|
- - ">="
|
|
270
139
|
- !ruby/object:Gem::Version
|
|
271
|
-
version: '
|
|
272
|
-
|
|
273
|
-
prerelease: false
|
|
274
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
275
|
-
requirements:
|
|
276
|
-
- - ">="
|
|
277
|
-
- !ruby/object:Gem::Version
|
|
278
|
-
version: '0'
|
|
279
|
-
- !ruby/object:Gem::Dependency
|
|
280
|
-
name: bundler
|
|
281
|
-
requirement: !ruby/object:Gem::Requirement
|
|
282
|
-
requirements:
|
|
283
|
-
- - ">="
|
|
140
|
+
version: '1.3'
|
|
141
|
+
- - "<"
|
|
284
142
|
- !ruby/object:Gem::Version
|
|
285
|
-
version: '0'
|
|
143
|
+
version: '3.0'
|
|
286
144
|
type: :development
|
|
287
145
|
prerelease: false
|
|
288
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
289
147
|
requirements:
|
|
290
148
|
- - ">="
|
|
291
149
|
- !ruby/object:Gem::Version
|
|
292
|
-
version: '
|
|
293
|
-
-
|
|
294
|
-
name: builder
|
|
295
|
-
requirement: !ruby/object:Gem::Requirement
|
|
296
|
-
requirements:
|
|
297
|
-
- - ">="
|
|
150
|
+
version: '1.3'
|
|
151
|
+
- - "<"
|
|
298
152
|
- !ruby/object:Gem::Version
|
|
299
|
-
version: '0'
|
|
300
|
-
type: :development
|
|
301
|
-
prerelease: false
|
|
302
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
303
|
-
requirements:
|
|
304
|
-
- - ">="
|
|
305
|
-
- !ruby/object:Gem::Version
|
|
306
|
-
version: '0'
|
|
153
|
+
version: '3.0'
|
|
307
154
|
- !ruby/object:Gem::Dependency
|
|
308
|
-
name:
|
|
155
|
+
name: simplecov
|
|
309
156
|
requirement: !ruby/object:Gem::Requirement
|
|
310
157
|
requirements:
|
|
311
158
|
- - ">="
|
|
312
159
|
- !ruby/object:Gem::Version
|
|
313
|
-
version: '0'
|
|
160
|
+
version: '0.22'
|
|
161
|
+
- - "<"
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: '2.0'
|
|
314
164
|
type: :development
|
|
315
165
|
prerelease: false
|
|
316
166
|
version_requirements: !ruby/object:Gem::Requirement
|
|
317
167
|
requirements:
|
|
318
168
|
- - ">="
|
|
319
169
|
- !ruby/object:Gem::Version
|
|
320
|
-
version: '0'
|
|
321
|
-
|
|
322
|
-
|
|
170
|
+
version: '0.22'
|
|
171
|
+
- - "<"
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '2.0'
|
|
174
|
+
description: |
|
|
175
|
+
A Ruby framework for general-purpose automatic processing. A job is
|
|
176
|
+
described in a YAML file called a Recipe, which names plugins in order;
|
|
177
|
+
each plugin receives the previous one's output and returns the next one's
|
|
178
|
+
input. Subscribing, filtering, storing and publishing are all plugins, and
|
|
179
|
+
a plugin is found by name on a search path rather than registered.
|
|
180
|
+
email:
|
|
181
|
+
- idnanashi@gmail.com
|
|
323
182
|
executables:
|
|
324
183
|
- automatic
|
|
325
184
|
extensions: []
|
|
326
185
|
extra_rdoc_files:
|
|
327
186
|
- README.md
|
|
187
|
+
- doc/LICENSE.md
|
|
328
188
|
files:
|
|
329
|
-
- Gemfile
|
|
330
189
|
- README.md
|
|
331
|
-
- Rakefile
|
|
332
190
|
- VERSION
|
|
333
191
|
- assets/siteinfo/items_all.json
|
|
334
192
|
- automatic.gemspec
|
|
335
193
|
- bin/automatic
|
|
336
194
|
- config/feed2console.yml
|
|
195
|
+
- config/feed2markdown.yml
|
|
337
196
|
- db/.gitkeep
|
|
197
|
+
- doc/AI_TUTORIAL.md
|
|
338
198
|
- doc/AUTHORS
|
|
199
|
+
- doc/BASIC_DESIGN.md
|
|
339
200
|
- doc/COPYING
|
|
340
|
-
- doc/
|
|
341
|
-
- doc/
|
|
342
|
-
- doc/
|
|
343
|
-
- doc/
|
|
344
|
-
- doc/
|
|
201
|
+
- doc/COPYING.LESSER
|
|
202
|
+
- doc/DEPLOYMENT.md
|
|
203
|
+
- doc/LICENSE.md
|
|
204
|
+
- doc/PLUGINS.md
|
|
205
|
+
- doc/PLUGIN_DEVELOPMENT.md
|
|
206
|
+
- doc/POLICY.md
|
|
207
|
+
- doc/QUICKSTART.md
|
|
208
|
+
- doc/RELEASING.md
|
|
209
|
+
- doc/REQUIREMENTS.md
|
|
210
|
+
- doc/VERSIONS
|
|
345
211
|
- lib/automatic.rb
|
|
212
|
+
- lib/automatic/cli.rb
|
|
346
213
|
- lib/automatic/environment.rb
|
|
347
214
|
- lib/automatic/feed_maker.rb
|
|
348
215
|
- lib/automatic/feed_parser.rb
|
|
216
|
+
- lib/automatic/http.rb
|
|
349
217
|
- lib/automatic/log.rb
|
|
350
218
|
- lib/automatic/opml.rb
|
|
351
219
|
- lib/automatic/pipeline.rb
|
|
352
220
|
- lib/automatic/recipe.rb
|
|
353
221
|
- lib/automatic/version.rb
|
|
354
222
|
- plugins/custom_feed/svn_log.rb
|
|
223
|
+
- plugins/custom_feed/web.rb
|
|
355
224
|
- plugins/filter/absolute_uri.rb
|
|
356
225
|
- plugins/filter/accept.rb
|
|
226
|
+
- plugins/filter/claude.rb
|
|
357
227
|
- plugins/filter/clear.rb
|
|
358
228
|
- plugins/filter/description_link.rb
|
|
359
229
|
- plugins/filter/full_feed.rb
|
|
230
|
+
- plugins/filter/gemini.rb
|
|
360
231
|
- plugins/filter/github_feed.rb
|
|
361
|
-
- plugins/filter/google_news.rb
|
|
362
232
|
- plugins/filter/ignore.rb
|
|
363
233
|
- plugins/filter/image.rb
|
|
364
234
|
- plugins/filter/image_source.rb
|
|
235
|
+
- plugins/filter/join.rb
|
|
365
236
|
- plugins/filter/one.rb
|
|
237
|
+
- plugins/filter/open_ai.rb
|
|
366
238
|
- plugins/filter/rand.rb
|
|
239
|
+
- plugins/filter/sakura_ai.rb
|
|
367
240
|
- plugins/filter/sanitize.rb
|
|
368
241
|
- plugins/filter/sort.rb
|
|
369
242
|
- plugins/filter/tumblr_resize.rb
|
|
@@ -374,114 +247,30 @@ files:
|
|
|
374
247
|
- plugins/publish/console_link.rb
|
|
375
248
|
- plugins/publish/eject.rb
|
|
376
249
|
- plugins/publish/fluentd.rb
|
|
377
|
-
- plugins/publish/google_calendar.rb
|
|
378
250
|
- plugins/publish/hatena_bookmark.rb
|
|
379
|
-
- plugins/publish/hipchat.rb
|
|
380
251
|
- plugins/publish/instapaper.rb
|
|
252
|
+
- plugins/publish/markdown.rb
|
|
381
253
|
- plugins/publish/memcached.rb
|
|
382
|
-
- plugins/publish/pocket.rb
|
|
383
|
-
- plugins/publish/twitter.rb
|
|
384
254
|
- plugins/store/database.rb
|
|
255
|
+
- plugins/store/digest.rb
|
|
385
256
|
- plugins/store/file.rb
|
|
386
257
|
- plugins/store/full_text.rb
|
|
387
258
|
- plugins/store/permalink.rb
|
|
388
|
-
- plugins/subscription/chan_toru.rb
|
|
389
259
|
- plugins/subscription/feed.rb
|
|
390
|
-
- plugins/subscription/g_guide.rb
|
|
391
260
|
- plugins/subscription/link.rb
|
|
392
|
-
- plugins/subscription/pocket.rb
|
|
393
261
|
- plugins/subscription/text.rb
|
|
394
262
|
- plugins/subscription/tumblr.rb
|
|
395
|
-
- plugins/subscription/twitter.rb
|
|
396
|
-
- plugins/subscription/twitter_search.rb
|
|
397
|
-
- plugins/subscription/weather.rb
|
|
398
263
|
- plugins/subscription/xml.rb
|
|
399
|
-
|
|
400
|
-
- spec/fixtures/sampleFeeds.tsv
|
|
401
|
-
- spec/fixtures/sampleFeeds2.tsv
|
|
402
|
-
- spec/fixtures/sampleRecipe.yml
|
|
403
|
-
- spec/lib/automatic/log_spec.rb
|
|
404
|
-
- spec/lib/automatic/pipeline_spec.rb
|
|
405
|
-
- spec/lib/automatic/recipe_spec.rb
|
|
406
|
-
- spec/lib/automatic_spec.rb
|
|
407
|
-
- spec/plugins/custom_feed/svn_log_spec.rb
|
|
408
|
-
- spec/plugins/filter/absolute_uri_spec.rb
|
|
409
|
-
- spec/plugins/filter/accept_spec.rb
|
|
410
|
-
- spec/plugins/filter/clear_spec.rb
|
|
411
|
-
- spec/plugins/filter/description_link_spec.rb
|
|
412
|
-
- spec/plugins/filter/full_feed_spec.rb
|
|
413
|
-
- spec/plugins/filter/github_feed_spec.rb
|
|
414
|
-
- spec/plugins/filter/google_news_spec.rb
|
|
415
|
-
- spec/plugins/filter/ignore_spec.rb
|
|
416
|
-
- spec/plugins/filter/image_source_spec.rb
|
|
417
|
-
- spec/plugins/filter/image_spec.rb
|
|
418
|
-
- spec/plugins/filter/one_spec.rb
|
|
419
|
-
- spec/plugins/filter/rand_spec.rb
|
|
420
|
-
- spec/plugins/filter/sanitize_spec.rb
|
|
421
|
-
- spec/plugins/filter/sort_spec.rb
|
|
422
|
-
- spec/plugins/filter/tumblr_resize_spec.rb
|
|
423
|
-
- spec/plugins/notify/ikachan_spec.rb
|
|
424
|
-
- spec/plugins/provide/fluentd_spec.rb
|
|
425
|
-
- spec/plugins/publish/amazon_s3_spec.rb
|
|
426
|
-
- spec/plugins/publish/console_spec.rb
|
|
427
|
-
- spec/plugins/publish/eject_spec.rb
|
|
428
|
-
- spec/plugins/publish/fluentd_spec.rb
|
|
429
|
-
- spec/plugins/publish/google_calendar_spec.rb
|
|
430
|
-
- spec/plugins/publish/hatena_bookmark_spec.rb
|
|
431
|
-
- spec/plugins/publish/hipchat_spec.rb
|
|
432
|
-
- spec/plugins/publish/instapaper_spec.rb
|
|
433
|
-
- spec/plugins/publish/memcached_spec.rb
|
|
434
|
-
- spec/plugins/publish/pocket_spec.rb
|
|
435
|
-
- spec/plugins/publish/twitter_spec.rb
|
|
436
|
-
- spec/plugins/store/file_spec.rb
|
|
437
|
-
- spec/plugins/store/full_text_spec.rb
|
|
438
|
-
- spec/plugins/store/permalink_spec.rb
|
|
439
|
-
- spec/plugins/subscription/chan_toru_spec.rb
|
|
440
|
-
- spec/plugins/subscription/feed_spec.rb
|
|
441
|
-
- spec/plugins/subscription/g_guide_spec.rb
|
|
442
|
-
- spec/plugins/subscription/link_spec.rb
|
|
443
|
-
- spec/plugins/subscription/pocket_spec.rb
|
|
444
|
-
- spec/plugins/subscription/text_spec.rb
|
|
445
|
-
- spec/plugins/subscription/tumblr_spec.rb
|
|
446
|
-
- spec/plugins/subscription/twitter_search_spec.rb
|
|
447
|
-
- spec/plugins/subscription/twitter_spec.rb
|
|
448
|
-
- spec/plugins/subscription/weather_spec.rb
|
|
449
|
-
- spec/plugins/subscription/xml_spec.rb
|
|
450
|
-
- spec/spec_helper.rb
|
|
451
|
-
- spec/user_dir/plugins/store/mock.rb
|
|
452
|
-
- test/fixtures/sampleOPML.xml
|
|
453
|
-
- test/integration/test_absoluteurl.yml
|
|
454
|
-
- test/integration/test_activerecord.yml
|
|
455
|
-
- test/integration/test_add_pocket.yml
|
|
456
|
-
- test/integration/test_chan_toru.yml
|
|
457
|
-
- test/integration/test_descriptionlink.yml
|
|
458
|
-
- test/integration/test_fluentd.yml
|
|
459
|
-
- test/integration/test_fulltext.yml
|
|
460
|
-
- test/integration/test_google_news.yml
|
|
461
|
-
- test/integration/test_googlealert.yml
|
|
462
|
-
- test/integration/test_hatenabookmark.yml
|
|
463
|
-
- test/integration/test_ignore.yml
|
|
464
|
-
- test/integration/test_ignore2.yml
|
|
465
|
-
- test/integration/test_image2local.yml
|
|
466
|
-
- test/integration/test_instapaper.yml
|
|
467
|
-
- test/integration/test_link2local.yml
|
|
468
|
-
- test/integration/test_one.yml
|
|
469
|
-
- test/integration/test_pocket.yml
|
|
470
|
-
- test/integration/test_rand.yml
|
|
471
|
-
- test/integration/test_sanitize.yml
|
|
472
|
-
- test/integration/test_sort.yml
|
|
473
|
-
- test/integration/test_svnlog.yml
|
|
474
|
-
- test/integration/test_text2feed.yml
|
|
475
|
-
- test/integration/test_tumblr2local.yml
|
|
476
|
-
- test/integration/test_twitter_search.yml
|
|
477
|
-
- test/integration/test_weather.yml
|
|
478
|
-
- test/integration/test_xml2fluentd.yml
|
|
479
|
-
- vendor/.gitkeep
|
|
480
|
-
homepage: http://github.com/automaticruby/automaticruby
|
|
264
|
+
homepage: https://github.com/id774/automaticruby
|
|
481
265
|
licenses:
|
|
482
|
-
- GPL
|
|
483
|
-
|
|
484
|
-
|
|
266
|
+
- GPL-3.0-only
|
|
267
|
+
- LGPL-3.0-only
|
|
268
|
+
metadata:
|
|
269
|
+
source_code_uri: https://github.com/id774/automaticruby
|
|
270
|
+
bug_tracker_uri: https://github.com/id774/automaticruby/issues
|
|
271
|
+
changelog_uri: https://github.com/id774/automaticruby/blob/master/doc/VERSIONS
|
|
272
|
+
documentation_uri: https://github.com/id774/automaticruby/blob/master/README.md
|
|
273
|
+
rubygems_mfa_required: 'true'
|
|
485
274
|
rdoc_options: []
|
|
486
275
|
require_paths:
|
|
487
276
|
- lib
|
|
@@ -489,16 +278,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
489
278
|
requirements:
|
|
490
279
|
- - ">="
|
|
491
280
|
- !ruby/object:Gem::Version
|
|
492
|
-
version:
|
|
281
|
+
version: 3.3.0
|
|
493
282
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
494
283
|
requirements:
|
|
495
284
|
- - ">="
|
|
496
285
|
- !ruby/object:Gem::Version
|
|
497
286
|
version: '0'
|
|
498
287
|
requirements: []
|
|
499
|
-
|
|
500
|
-
rubygems_version: 2.4.5
|
|
501
|
-
signing_key:
|
|
288
|
+
rubygems_version: 4.0.6
|
|
502
289
|
specification_version: 4
|
|
503
290
|
summary: Automatic Ruby
|
|
504
291
|
test_files: []
|
data/Gemfile
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Version:20150104
|
|
2
|
-
|
|
3
|
-
source "http://rubygems.org"
|
|
4
|
-
source "http://gems.github.com"
|
|
5
|
-
|
|
6
|
-
gem 'json', '~> 1.8.1'
|
|
7
|
-
gem 'sqlite3', '~> 1.3.10'
|
|
8
|
-
gem 'activesupport', '~> 4.1.8'
|
|
9
|
-
gem 'activerecord', '~> 4.1.8'
|
|
10
|
-
gem 'hashie', '~> 3.3.2'
|
|
11
|
-
gem 'gcalapi', '~> 0.1.2'
|
|
12
|
-
gem 'xml-simple', '~> 1.1.4'
|
|
13
|
-
gem 'feedbag', '~> 0.9.5'
|
|
14
|
-
gem 'nokogiri', '~> 1.6.5'
|
|
15
|
-
gem 'sanitize', '~> 3.1.0'
|
|
16
|
-
gem 'faraday', '~> 0.8.9'
|
|
17
|
-
gem 'twitter', '~> 4.8.0'
|
|
18
|
-
gem 'pocket-ruby', '~> 0.0.5'
|
|
19
|
-
gem 'weather_hacker', '~> 0.1.7'
|
|
20
|
-
gem 'hipchat', '~> 1.4.0'
|
|
21
|
-
gem 'fluent-logger', '~> 0.4.7'
|
|
22
|
-
gem 'dalli', '~> 2.7.2'
|
|
23
|
-
gem 'aws-sdk', '~> 1.60.2'
|
|
24
|
-
|
|
25
|
-
group :test do
|
|
26
|
-
gem 'rspec', '~> 2.14.1'
|
|
27
|
-
gem 'rcov', :platforms => :mri_18
|
|
28
|
-
gem 'simplecov', '~> 0.9.1'
|
|
29
|
-
gem 'simplecov-rcov', '~> 0.2.3'
|
|
30
|
-
gem 'koseki-mocksmtpd', '~> 0.0.3'
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
group :development do
|
|
34
|
-
gem 'cucumber'
|
|
35
|
-
gem 'bundler'
|
|
36
|
-
gem 'builder'
|
|
37
|
-
gem "jeweler"
|
|
38
|
-
end
|