dustin-twitter 0.3.2.1

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.
Files changed (67) hide show
  1. data/History.txt +89 -0
  2. data/License.txt +19 -0
  3. data/Manifest.txt +66 -0
  4. data/README.txt +75 -0
  5. data/Rakefile +4 -0
  6. data/TODO.txt +2 -0
  7. data/bin/twitter +15 -0
  8. data/config/hoe.rb +74 -0
  9. data/config/requirements.rb +17 -0
  10. data/examples/blocks.rb +15 -0
  11. data/examples/direct_messages.rb +26 -0
  12. data/examples/favorites.rb +20 -0
  13. data/examples/friends_followers.rb +25 -0
  14. data/examples/friendships.rb +13 -0
  15. data/examples/location.rb +8 -0
  16. data/examples/replies.rb +26 -0
  17. data/examples/sent_messages.rb +26 -0
  18. data/examples/timeline.rb +33 -0
  19. data/examples/twitter.rb +27 -0
  20. data/examples/verify_credentials.rb +13 -0
  21. data/lib/twitter/base.rb +248 -0
  22. data/lib/twitter/cli/config.rb +9 -0
  23. data/lib/twitter/cli/helpers.rb +97 -0
  24. data/lib/twitter/cli/migrations/20080722194500_create_accounts.rb +13 -0
  25. data/lib/twitter/cli/migrations/20080722194508_create_tweets.rb +16 -0
  26. data/lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb +9 -0
  27. data/lib/twitter/cli/migrations/20080722214606_create_configurations.rb +13 -0
  28. data/lib/twitter/cli/models/account.rb +33 -0
  29. data/lib/twitter/cli/models/configuration.rb +13 -0
  30. data/lib/twitter/cli/models/tweet.rb +20 -0
  31. data/lib/twitter/cli.rb +328 -0
  32. data/lib/twitter/direct_message.rb +22 -0
  33. data/lib/twitter/easy_class_maker.rb +43 -0
  34. data/lib/twitter/rate_limit_status.rb +19 -0
  35. data/lib/twitter/status.rb +22 -0
  36. data/lib/twitter/user.rb +37 -0
  37. data/lib/twitter/version.rb +9 -0
  38. data/lib/twitter.rb +20 -0
  39. data/script/destroy +14 -0
  40. data/script/generate +14 -0
  41. data/script/txt2html +74 -0
  42. data/setup.rb +1585 -0
  43. data/spec/base_spec.rb +109 -0
  44. data/spec/cli/helper_spec.rb +35 -0
  45. data/spec/direct_message_spec.rb +35 -0
  46. data/spec/fixtures/followers.xml +706 -0
  47. data/spec/fixtures/friends.xml +609 -0
  48. data/spec/fixtures/friends_for.xml +584 -0
  49. data/spec/fixtures/friends_lite.xml +192 -0
  50. data/spec/fixtures/friends_timeline.xml +66 -0
  51. data/spec/fixtures/public_timeline.xml +148 -0
  52. data/spec/fixtures/rate_limit_status.xml +7 -0
  53. data/spec/fixtures/status.xml +25 -0
  54. data/spec/fixtures/user.xml +38 -0
  55. data/spec/fixtures/user_timeline.xml +465 -0
  56. data/spec/spec.opts +1 -0
  57. data/spec/spec_helper.rb +8 -0
  58. data/spec/status_spec.rb +40 -0
  59. data/spec/user_spec.rb +42 -0
  60. data/tasks/deployment.rake +41 -0
  61. data/tasks/environment.rake +7 -0
  62. data/tasks/website.rake +17 -0
  63. data/twitter.gemspec +49 -0
  64. data/website/css/common.css +47 -0
  65. data/website/images/terminal_output.png +0 -0
  66. data/website/index.html +138 -0
  67. metadata +176 -0
data/twitter.gemspec ADDED
@@ -0,0 +1,49 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{twitter}
3
+ s.version = "0.3.2.1"
4
+
5
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
+ s.authors = ["John Nunemaker"]
7
+ s.date = %q{2008-07-28}
8
+ s.default_executable = %q{twitter}
9
+ s.description = %q{a command line interface for twitter, also a library which wraps the twitter api}
10
+ s.email = %q{nunemaker@gmail.com}
11
+ s.executables = ["twitter"]
12
+ s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "TODO.txt"]
13
+ s.files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "TODO.txt", "bin/twitter", "config/hoe.rb", "config/requirements.rb", "examples/blocks.rb", "examples/direct_messages.rb", "examples/favorites.rb", "examples/friends_followers.rb", "examples/friendships.rb", "examples/location.rb", "examples/replies.rb", "examples/sent_messages.rb", "examples/timeline.rb", "examples/twitter.rb", "examples/verify_credentials.rb", "lib/twitter.rb", "lib/twitter/base.rb", "lib/twitter/cli.rb", "lib/twitter/cli/config.rb", "lib/twitter/cli/helpers.rb", "lib/twitter/cli/migrations/20080722194500_create_accounts.rb", "lib/twitter/cli/migrations/20080722194508_create_tweets.rb", "lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb", "lib/twitter/cli/migrations/20080722214606_create_configurations.rb", "lib/twitter/cli/models/account.rb", "lib/twitter/cli/models/configuration.rb", "lib/twitter/cli/models/tweet.rb", "lib/twitter/direct_message.rb", "lib/twitter/easy_class_maker.rb", "lib/twitter/rate_limit_status.rb", "lib/twitter/status.rb", "lib/twitter/user.rb", "lib/twitter/version.rb", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/base_spec.rb", "spec/cli/helper_spec.rb", "spec/direct_message_spec.rb", "spec/fixtures/followers.xml", "spec/fixtures/friends.xml", "spec/fixtures/friends_for.xml", "spec/fixtures/friends_lite.xml", "spec/fixtures/friends_timeline.xml", "spec/fixtures/public_timeline.xml", "spec/fixtures/rate_limit_status.xml", "spec/fixtures/status.xml", "spec/fixtures/user.xml", "spec/fixtures/user_timeline.xml", "spec/spec.opts", "spec/spec_helper.rb", "spec/status_spec.rb", "spec/user_spec.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "twitter.gemspec", "website/css/common.css", "website/images/terminal_output.png", "website/index.html"]
14
+ s.has_rdoc = true
15
+ s.homepage = %q{http://twitter.rubyforge.org}
16
+ s.rdoc_options = ["--main", "README.txt"]
17
+ s.require_paths = ["lib"]
18
+ s.rubyforge_project = %q{twitter}
19
+ s.rubygems_version = %q{1.2.0}
20
+ s.summary = %q{a command line interface for twitter, also a library which wraps the twitter api}
21
+
22
+ if s.respond_to? :specification_version then
23
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24
+ s.specification_version = 2
25
+
26
+ if current_version >= 3 then
27
+ s.add_runtime_dependency(%q<hpricot>, [">= 0.6"])
28
+ s.add_runtime_dependency(%q<activesupport>, [">= 2.1"])
29
+ s.add_runtime_dependency(%q<main>, [">= 2.8.2"])
30
+ s.add_runtime_dependency(%q<highline>, [">= 1.4.0"])
31
+ s.add_runtime_dependency(%q<activerecord>, [">= 2.1"])
32
+ s.add_runtime_dependency(%q<sqlite3-ruby>, [">= 1.2.2"])
33
+ else
34
+ s.add_dependency(%q<hpricot>, [">= 0.6"])
35
+ s.add_dependency(%q<activesupport>, [">= 2.1"])
36
+ s.add_dependency(%q<main>, [">= 2.8.2"])
37
+ s.add_dependency(%q<highline>, [">= 1.4.0"])
38
+ s.add_dependency(%q<activerecord>, [">= 2.1"])
39
+ s.add_dependency(%q<sqlite3-ruby>, [">= 1.2.2"])
40
+ end
41
+ else
42
+ s.add_dependency(%q<hpricot>, [">= 0.6"])
43
+ s.add_dependency(%q<activesupport>, [">= 2.1"])
44
+ s.add_dependency(%q<main>, [">= 2.8.2"])
45
+ s.add_dependency(%q<highline>, [">= 1.4.0"])
46
+ s.add_dependency(%q<activerecord>, [">= 2.1"])
47
+ s.add_dependency(%q<sqlite3-ruby>, [">= 1.2.2"])
48
+ end
49
+ end
@@ -0,0 +1,47 @@
1
+ @media screen, projection {
2
+ /*
3
+ Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4
+ Code licensed under the BSD License:
5
+ http://developer.yahoo.net/yui/license.txt
6
+ version: 2.2.0
7
+ */
8
+ body {font:13px arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}select, input, textarea {font:99% arial,helvetica,clean,sans-serif;}pre, code {font:115% monospace;*font-size:100%;}body * {line-height:1.22em;}
9
+ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}/*ol,ul {list-style:none;}*/caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym {border:0;}
10
+ /* end of yahoo reset and fonts */
11
+
12
+ body {color:#333; background:#4b1a1a; line-height:1.3;}
13
+ p {margin:0 0 20px;}
14
+ a {color:#4b1a1a;}
15
+ a:hover {text-decoration:none;}
16
+ strong {font-weight:bold;}
17
+ em {font-style:italics;}
18
+ h1,h2,h3,h4,h5,h6 {font-weight:bold;}
19
+ h1 {font-size:197%; margin:30px 0; color:#4b1a1a;}
20
+ h2 {font-size:174%; margin:20px 0; color:#b8111a;}
21
+ h3 {font-size:152%; margin:10px 0;}
22
+ h4 {font-size:129%; margin:10px 0;}
23
+ pre {background:#eee; margin:0 0 20px; padding:20px; border:1px solid #ccc; font-size:100%; overflow:auto;}
24
+ code {font-size:100%; margin:0; padding:0;}
25
+ ul, ol {margin:10px 0 10px 25px;}
26
+ ol li {margin:0 0 10px;}
27
+
28
+
29
+
30
+
31
+
32
+ div#wrapper {background:#fff; width:560px; margin:0 auto; padding:20px; border:10px solid #bc8c46; border-width:0 10px;}
33
+ div#header {position:relative; border-bottom:1px dotted; margin:0 0 10px; padding:0 0 10px;}
34
+ div#header p {margin:0; padding:0;}
35
+ div#header h1 {margin:0; padding:0;}
36
+ ul#nav {position:absolute; top:0; right:0; list-style:none; margin:0; padding:0;}
37
+ ul#nav li {display:inline; padding:0 0 0 5px;}
38
+ ul#nav li a {}
39
+ div#content {}
40
+ div#footer {margin:40px 0 0; border-top:1px dotted; padding:10px 0 0;}
41
+
42
+
43
+
44
+
45
+
46
+
47
+ }
Binary file
@@ -0,0 +1,138 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5
+ <title>Ruby Twitter Gem by John Nunemaker</title>
6
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
7
+ </head>
8
+ <body>
9
+
10
+ <div id="wrapper">
11
+ <div id="header">
12
+ <h1>Twitter</h1>
13
+ <p>command line tweets and an api wrapper</p>
14
+
15
+ <ul id="nav">
16
+ <li><a href="rdoc/">Docs</a></li>
17
+ <li><a href="http://github.com/jnunemaker/twitter">Github</a></li>
18
+ <li><a href="http://rubyforge.org/projects/twitter/">Rubyforge</a></li>
19
+ </ul>
20
+ </div>
21
+
22
+ <div id="content">
23
+ <h2>Install</h2>
24
+ <pre><code>$ sudo gem install twitter</code></pre>
25
+ <p><small>note: the twitter gem now works with hpricot 0.5+</small></p>
26
+
27
+ <h2>API Wrapping</h2>
28
+ <p>I do my best to keep it easy to use. Below are some code samples showing a few of the methods.</p>
29
+
30
+ <pre><code>twit = twit
31
+ twit.update('watching veronica mars')
32
+
33
+ puts "Public Timeline", "=" * 50
34
+ twit.timeline(:public).each do |s|
35
+ puts s.text, s.user.name
36
+ puts
37
+ end
38
+
39
+ puts '', "Friends Timeline", "=" * 50
40
+ twit.timeline(:friends).each do |s|
41
+ puts s.text, s.user.name
42
+ puts
43
+ end
44
+
45
+ puts '', "You and Your Friends Timeline", "=" * 50
46
+ twit.timeline(:user).each do |s|
47
+ puts s.text, s.user.name
48
+ puts
49
+ end
50
+
51
+ puts '', "Your Friends", "=" * 50
52
+ twit.friends.each do |u|
53
+ puts u.name, u.status.text
54
+ puts
55
+ end
56
+
57
+ puts '', "jnunemaker's Friends", "=" * 50
58
+ twit.friends_for('jnunemaker').each do |u|
59
+ puts u.name
60
+ puts
61
+ end
62
+
63
+ puts '', "Your Followers", "=" * 50
64
+ twit.followers.each do |u|
65
+ puts u.name
66
+ puts
67
+ end
68
+ </code></pre>
69
+
70
+ <h2>Command Line</h2>
71
+
72
+ <p><img src="images/terminal_output.png" alt="Terminal Output" style="width:560px;" /></p>
73
+
74
+ <p>The first thing you'll want to do is install the database so your account(s) can be stored.</p>
75
+
76
+ <pre><code>$ twitter install</code></pre>
77
+
78
+ <p>You can always uninstall twitter like this:</p>
79
+
80
+ <pre><code>$ twitter uninstall</code></pre>
81
+
82
+ <p>Once the twitter database is installed and migrated, you can add accounts like this:</p>
83
+
84
+ <pre><code>$ twitter add
85
+ Add New Account:
86
+ Username: jnunemaker
87
+ Password (won't be displayed):
88
+ Account added.</code></pre>
89
+
90
+ <p>You can also list all the accounts you've added.</p>
91
+
92
+ <pre><code>$ twitter list
93
+ Account List
94
+ * jnunemaker
95
+ snitch_test</code></pre>
96
+
97
+ <p>The * means denotes the account that will be used when posting, befriending, defriending, following, leaving or viewing a timeline.</p>
98
+
99
+ <p>To post using the account marked with the *, simply type the following:</p>
100
+
101
+ <pre><code>$ twitter post "releasing my new twitter gem"</code></pre>
102
+
103
+ <p>That is about it. You can do pretty much anything that you can do with twitter from the command line interface.</p>
104
+
105
+ <pre><code>$ twitter</code></pre>
106
+
107
+ <p>Will give you a list of all the commands. You can get the help for each command by running twitter [command] -h. </p>
108
+
109
+
110
+ <h2>Support</h2>
111
+ <p>Please leave all support requests and suggestions at the <a href="http://groups.google.com/group/ruby-twitter-gem">google group</a>.</p>
112
+
113
+ <h2>Uses</h2>
114
+ <ul>
115
+ <li><a href="http://snitch.rubyforge.org">Snitch</a></li>
116
+ <li><a href="http://al3x.net/entries/766">Growl + Twitter</a></li>
117
+ <li><a href="http://snippets.dzone.com/posts/show/3714">Twitter Woot Bot</a> (<a href="http://soylentfoo.jnewland.com/articles/2007/03/22/woot-twitter-bot-now-official">more here</a>)</li>
118
+ <li><a href="http://soylentfoo.jnewland.com/articles/2007/01/22/tweet-update-twitter-via-quicksilver">Tweet Quicksilver Action</a></li>
119
+ <li><a href="http://blog.evanweaver.com/articles/2007/02/09/log-system-security-events-to-twitter">logging security events to twitter</a></li>
120
+ <li><a href="http://shareomatic.com/">Shareomatic</a> is using it for their <a href="http://twitter.com/shareomatic">twitter account</a></li>
121
+ </ul>
122
+
123
+ <p>Using the twitter gem for something, <a href="mailto:nunemaker@gmail.com">let me know</a> and I'll add you above.</p>
124
+ </div>
125
+
126
+ <div id="footer">
127
+ <p>Created by <a href="http://addictedtonew.com/about/">John Nunemaker</a></p>
128
+ </div>
129
+ </div>
130
+
131
+ <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
132
+ <script type="text/javascript">_uacct = "UA-85301-9"; urchinTracker();</script>
133
+
134
+ <!-- 103bees.com 'bee' code v1.11 - please do not make any changes! -->
135
+ <script type="text/javascript" src="http://103bees.com/bees/?bee=3672&amp;fid=5643"></script>
136
+ <!-- 103bees.com 'bee' code -->
137
+ </body>
138
+ </html>
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dustin-twitter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.2.1
5
+ platform: ruby
6
+ authors:
7
+ - John Nunemaker
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-07-28 00:00:00 -07:00
13
+ default_executable: twitter
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hpricot
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0.6"
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: activesupport
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: "2.1"
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: main
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.8.2
41
+ version:
42
+ - !ruby/object:Gem::Dependency
43
+ name: highline
44
+ version_requirement:
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 1.4.0
50
+ version:
51
+ - !ruby/object:Gem::Dependency
52
+ name: activerecord
53
+ version_requirement:
54
+ version_requirements: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: "2.1"
59
+ version:
60
+ - !ruby/object:Gem::Dependency
61
+ name: sqlite3-ruby
62
+ version_requirement:
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: 1.2.2
68
+ version:
69
+ description: a command line interface for twitter, also a library which wraps the twitter api
70
+ email: nunemaker@gmail.com
71
+ executables:
72
+ - twitter
73
+ extensions: []
74
+
75
+ extra_rdoc_files:
76
+ - History.txt
77
+ - License.txt
78
+ - Manifest.txt
79
+ - README.txt
80
+ - TODO.txt
81
+ files:
82
+ - History.txt
83
+ - License.txt
84
+ - Manifest.txt
85
+ - README.txt
86
+ - Rakefile
87
+ - TODO.txt
88
+ - bin/twitter
89
+ - config/hoe.rb
90
+ - config/requirements.rb
91
+ - examples/blocks.rb
92
+ - examples/direct_messages.rb
93
+ - examples/favorites.rb
94
+ - examples/friends_followers.rb
95
+ - examples/friendships.rb
96
+ - examples/location.rb
97
+ - examples/replies.rb
98
+ - examples/sent_messages.rb
99
+ - examples/timeline.rb
100
+ - examples/twitter.rb
101
+ - examples/verify_credentials.rb
102
+ - lib/twitter.rb
103
+ - lib/twitter/base.rb
104
+ - lib/twitter/cli.rb
105
+ - lib/twitter/cli/config.rb
106
+ - lib/twitter/cli/helpers.rb
107
+ - lib/twitter/cli/migrations/20080722194500_create_accounts.rb
108
+ - lib/twitter/cli/migrations/20080722194508_create_tweets.rb
109
+ - lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb
110
+ - lib/twitter/cli/migrations/20080722214606_create_configurations.rb
111
+ - lib/twitter/cli/models/account.rb
112
+ - lib/twitter/cli/models/configuration.rb
113
+ - lib/twitter/cli/models/tweet.rb
114
+ - lib/twitter/direct_message.rb
115
+ - lib/twitter/easy_class_maker.rb
116
+ - lib/twitter/rate_limit_status.rb
117
+ - lib/twitter/status.rb
118
+ - lib/twitter/user.rb
119
+ - lib/twitter/version.rb
120
+ - script/destroy
121
+ - script/generate
122
+ - script/txt2html
123
+ - setup.rb
124
+ - spec/base_spec.rb
125
+ - spec/cli/helper_spec.rb
126
+ - spec/direct_message_spec.rb
127
+ - spec/fixtures/followers.xml
128
+ - spec/fixtures/friends.xml
129
+ - spec/fixtures/friends_for.xml
130
+ - spec/fixtures/friends_lite.xml
131
+ - spec/fixtures/friends_timeline.xml
132
+ - spec/fixtures/public_timeline.xml
133
+ - spec/fixtures/rate_limit_status.xml
134
+ - spec/fixtures/status.xml
135
+ - spec/fixtures/user.xml
136
+ - spec/fixtures/user_timeline.xml
137
+ - spec/spec.opts
138
+ - spec/spec_helper.rb
139
+ - spec/status_spec.rb
140
+ - spec/user_spec.rb
141
+ - tasks/deployment.rake
142
+ - tasks/environment.rake
143
+ - tasks/website.rake
144
+ - twitter.gemspec
145
+ - website/css/common.css
146
+ - website/images/terminal_output.png
147
+ - website/index.html
148
+ has_rdoc: true
149
+ homepage: http://twitter.rubyforge.org
150
+ post_install_message:
151
+ rdoc_options:
152
+ - --main
153
+ - README.txt
154
+ require_paths:
155
+ - lib
156
+ required_ruby_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: "0"
161
+ version:
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: "0"
167
+ version:
168
+ requirements: []
169
+
170
+ rubyforge_project: twitter
171
+ rubygems_version: 1.2.0
172
+ signing_key:
173
+ specification_version: 2
174
+ summary: a command line interface for twitter, also a library which wraps the twitter api
175
+ test_files: []
176
+