atig 0.0.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.
- data/.gitignore +24 -0
- data/Gemfile +3 -0
- data/README.mkdn +52 -0
- data/Rakefile +15 -0
- data/atig.gemspec +25 -0
- data/bin/atig +74 -0
- data/docs/OMakefile +32 -0
- data/docs/OMakeroot +45 -0
- data/docs/_static/allow.png +0 -0
- data/docs/_static/emacs.png +0 -0
- data/docs/_static/irc_setting.png +0 -0
- data/docs/_static/irssi.png +0 -0
- data/docs/_static/limechat.png +0 -0
- data/docs/_static/limechat_s.png +0 -0
- data/docs/_static/oauth_channel.png +0 -0
- data/docs/_static/screenshot.png +0 -0
- data/docs/_static/structure.png +0 -0
- data/docs/_static/verify.png +0 -0
- data/docs/changelog.rst +96 -0
- data/docs/commandline_options.rst +21 -0
- data/docs/commands.rst +84 -0
- data/docs/conf.py +194 -0
- data/docs/config.rst +159 -0
- data/docs/feature.rst +41 -0
- data/docs/graphics.graffle +1995 -0
- data/docs/hacking_guide.rst +43 -0
- data/docs/index.rst +109 -0
- data/docs/irc.rst +31 -0
- data/docs/options.rst +75 -0
- data/docs/quickstart.rst +89 -0
- data/docs/resize.sh +7 -0
- data/docs/tiarra.rst +2 -0
- data/docs/tig.rst +21 -0
- data/lib/atig.rb +19 -0
- data/lib/atig/agent.rb +8 -0
- data/lib/atig/agent/agent.rb +38 -0
- data/lib/atig/agent/clenup.rb +23 -0
- data/lib/atig/agent/dm.rb +35 -0
- data/lib/atig/agent/following.rb +45 -0
- data/lib/atig/agent/full_list.rb +20 -0
- data/lib/atig/agent/list.rb +55 -0
- data/lib/atig/agent/list_status.rb +46 -0
- data/lib/atig/agent/mention.rb +13 -0
- data/lib/atig/agent/other_list.rb +18 -0
- data/lib/atig/agent/own_list.rb +18 -0
- data/lib/atig/agent/stream_follow.rb +38 -0
- data/lib/atig/agent/timeline.rb +13 -0
- data/lib/atig/agent/user_stream.rb +31 -0
- data/lib/atig/basic_twitter.rb +116 -0
- data/lib/atig/bitly.rb +52 -0
- data/lib/atig/channel.rb +5 -0
- data/lib/atig/channel/channel.rb +17 -0
- data/lib/atig/channel/dm.rb +14 -0
- data/lib/atig/channel/list.rb +76 -0
- data/lib/atig/channel/mention.rb +20 -0
- data/lib/atig/channel/retweet.rb +28 -0
- data/lib/atig/channel/timeline.rb +74 -0
- data/lib/atig/command.rb +21 -0
- data/lib/atig/command/autofix.rb +58 -0
- data/lib/atig/command/command.rb +24 -0
- data/lib/atig/command/command_helper.rb +95 -0
- data/lib/atig/command/destroy.rb +44 -0
- data/lib/atig/command/dm.rb +31 -0
- data/lib/atig/command/favorite.rb +27 -0
- data/lib/atig/command/info.rb +50 -0
- data/lib/atig/command/limit.rb +15 -0
- data/lib/atig/command/location.rb +23 -0
- data/lib/atig/command/name.rb +18 -0
- data/lib/atig/command/option.rb +37 -0
- data/lib/atig/command/refresh.rb +18 -0
- data/lib/atig/command/reply.rb +37 -0
- data/lib/atig/command/retweet.rb +63 -0
- data/lib/atig/command/search.rb +51 -0
- data/lib/atig/command/spam.rb +26 -0
- data/lib/atig/command/status.rb +41 -0
- data/lib/atig/command/thread.rb +44 -0
- data/lib/atig/command/time.rb +32 -0
- data/lib/atig/command/uptime.rb +32 -0
- data/lib/atig/command/user.rb +42 -0
- data/lib/atig/command/user_info.rb +27 -0
- data/lib/atig/command/version.rb +49 -0
- data/lib/atig/command/whois.rb +39 -0
- data/lib/atig/db/db.rb +60 -0
- data/lib/atig/db/followings.rb +131 -0
- data/lib/atig/db/listenable.rb +22 -0
- data/lib/atig/db/lists.rb +76 -0
- data/lib/atig/db/roman.rb +30 -0
- data/lib/atig/db/sized_uniq_array.rb +62 -0
- data/lib/atig/db/sql.rb +35 -0
- data/lib/atig/db/statuses.rb +147 -0
- data/lib/atig/db/transaction.rb +47 -0
- data/lib/atig/exception_util.rb +26 -0
- data/lib/atig/gateway.rb +62 -0
- data/lib/atig/gateway/channel.rb +99 -0
- data/lib/atig/gateway/session.rb +326 -0
- data/lib/atig/http.rb +95 -0
- data/lib/atig/ifilter.rb +7 -0
- data/lib/atig/ifilter/expand_url.rb +74 -0
- data/lib/atig/ifilter/retweet.rb +14 -0
- data/lib/atig/ifilter/retweet_time.rb +16 -0
- data/lib/atig/ifilter/sanitize.rb +18 -0
- data/lib/atig/ifilter/strip.rb +15 -0
- data/lib/atig/ifilter/utf7.rb +26 -0
- data/lib/atig/ifilter/xid.rb +36 -0
- data/lib/atig/levenshtein.rb +49 -0
- data/lib/atig/monkey.rb +4 -0
- data/lib/atig/oauth-patch.rb +40 -0
- data/lib/atig/oauth.rb +55 -0
- data/lib/atig/ofilter.rb +4 -0
- data/lib/atig/ofilter/escape_url.rb +102 -0
- data/lib/atig/ofilter/footer.rb +20 -0
- data/lib/atig/ofilter/geo.rb +17 -0
- data/lib/atig/ofilter/short_url.rb +47 -0
- data/lib/atig/option.rb +90 -0
- data/lib/atig/scheduler.rb +79 -0
- data/lib/atig/search.rb +22 -0
- data/lib/atig/search_twitter.rb +21 -0
- data/lib/atig/sized_hash.rb +33 -0
- data/lib/atig/stream.rb +66 -0
- data/lib/atig/twitter.rb +79 -0
- data/lib/atig/twitter_struct.rb +63 -0
- data/lib/atig/unu.rb +27 -0
- data/lib/atig/update_checker.rb +53 -0
- data/lib/atig/url_escape.rb +62 -0
- data/lib/atig/util.rb +16 -0
- data/lib/atig/version.rb +3 -0
- data/lib/memory_profiler.rb +77 -0
- data/spec/command/autofix_spec.rb +35 -0
- data/spec/command/destroy_spec.rb +98 -0
- data/spec/command/dm_spec.rb +28 -0
- data/spec/command/favorite_spec.rb +55 -0
- data/spec/command/limit_spec.rb +27 -0
- data/spec/command/location_spec.rb +25 -0
- data/spec/command/name_spec.rb +19 -0
- data/spec/command/option_spec.rb +133 -0
- data/spec/command/refresh_spec.rb +22 -0
- data/spec/command/reply_spec.rb +79 -0
- data/spec/command/retweet_spec.rb +66 -0
- data/spec/command/spam_spec.rb +27 -0
- data/spec/command/status_spec.rb +44 -0
- data/spec/command/thread_spec.rb +91 -0
- data/spec/command/time_spec.rb +52 -0
- data/spec/command/uptime_spec.rb +55 -0
- data/spec/command/user_info_spec.rb +42 -0
- data/spec/command/user_spec.rb +50 -0
- data/spec/command/version_spec.rb +67 -0
- data/spec/command/whois_spec.rb +78 -0
- data/spec/db/followings_spec.rb +100 -0
- data/spec/db/listenable_spec.rb +32 -0
- data/spec/db/lists_spec.rb +104 -0
- data/spec/db/roman_spec.rb +17 -0
- data/spec/db/sized_uniq_array_spec.rb +63 -0
- data/spec/db/statuses_spec.rb +180 -0
- data/spec/ifilter/expand_url_spec.rb +44 -0
- data/spec/ifilter/retweet_spec.rb +28 -0
- data/spec/ifilter/retweet_time_spec.rb +25 -0
- data/spec/ifilter/sanitize_spec.rb +25 -0
- data/spec/ifilter/sid_spec.rb +29 -0
- data/spec/ifilter/strip_spec.rb +23 -0
- data/spec/ifilter/tid_spec.rb +29 -0
- data/spec/ifilter/utf7_spec.rb +30 -0
- data/spec/levenshtein_spec.rb +24 -0
- data/spec/ofilter/escape_url_spec.rb +50 -0
- data/spec/ofilter/footer_spec.rb +32 -0
- data/spec/ofilter/geo_spec.rb +33 -0
- data/spec/ofilter/short_url_spec.rb +127 -0
- data/spec/option_spec.rb +91 -0
- data/spec/sized_hash_spec.rb +45 -0
- data/spec/spec_helper.rb +35 -0
- data/spec/update_checker_spec.rb +55 -0
- metadata +326 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# -*- mode:ruby; coding:utf-8 -*-
|
|
2
|
+
|
|
3
|
+
require File.expand_path( '../spec_helper', __FILE__ )
|
|
4
|
+
require 'atig/update_checker'
|
|
5
|
+
|
|
6
|
+
describe Atig::UpdateChecker,'when use git version' do
|
|
7
|
+
def rev(c)
|
|
8
|
+
c * 40
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def commit(c, mesg)
|
|
12
|
+
{'id' => rev(c), 'message' => mesg}
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
before do
|
|
16
|
+
Atig::UpdateChecker.stub!(:git?).and_return(true)
|
|
17
|
+
Atig::UpdateChecker.stub!(:commits).
|
|
18
|
+
and_return [
|
|
19
|
+
commit('a', 'foo'),
|
|
20
|
+
commit('b', 'bar'),
|
|
21
|
+
commit('c', 'baz'),
|
|
22
|
+
commit('d', 'xyzzy'),
|
|
23
|
+
commit('e', 'fuga'),
|
|
24
|
+
]
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
it "should not do anything when use HEAD version" do
|
|
28
|
+
Atig::UpdateChecker.stub!(:local_repos?).and_return true
|
|
29
|
+
Atig::UpdateChecker.stub!(:server_version).and_return rev('a')
|
|
30
|
+
|
|
31
|
+
Atig::UpdateChecker.latest.should == []
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
it "should notify when not use HEAD version" do
|
|
35
|
+
Atig::UpdateChecker.stub!(:local_repos?).and_return false
|
|
36
|
+
Atig::UpdateChecker.stub!(:server_version).and_return rev('b')
|
|
37
|
+
|
|
38
|
+
Atig::UpdateChecker.latest.should == [ 'foo' ]
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
it "should notify many changes" do
|
|
42
|
+
Atig::UpdateChecker.stub!(:local_repos?).and_return false
|
|
43
|
+
Atig::UpdateChecker.stub!(:server_version).and_return rev('d')
|
|
44
|
+
|
|
45
|
+
Atig::UpdateChecker.latest.should == [ 'foo', 'bar', 'baz' ]
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
it "should notify all changes" do
|
|
49
|
+
Atig::UpdateChecker.stub!(:local_repos?).and_return false
|
|
50
|
+
Atig::UpdateChecker.stub!(:server_version).and_return rev('z')
|
|
51
|
+
|
|
52
|
+
Atig::UpdateChecker.latest.should == [ 'foo', 'bar', 'baz', 'xyzzy', 'fuga' ]
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: atig
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- SHIBATA Hiroshi
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-01-20 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: sqlite3-ruby
|
|
16
|
+
requirement: &70111072362400 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ~>
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 1.2.5
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *70111072362400
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: net-irc
|
|
27
|
+
requirement: &70111072361840 !ruby/object:Gem::Requirement
|
|
28
|
+
none: false
|
|
29
|
+
requirements:
|
|
30
|
+
- - ! '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: *70111072361840
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: oauth
|
|
38
|
+
requirement: &70111072361120 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ! '>='
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
type: :runtime
|
|
45
|
+
prerelease: false
|
|
46
|
+
version_requirements: *70111072361120
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: rake
|
|
49
|
+
requirement: &70111072360260 !ruby/object:Gem::Requirement
|
|
50
|
+
none: false
|
|
51
|
+
requirements:
|
|
52
|
+
- - ! '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
type: :runtime
|
|
56
|
+
prerelease: false
|
|
57
|
+
version_requirements: *70111072360260
|
|
58
|
+
- !ruby/object:Gem::Dependency
|
|
59
|
+
name: json
|
|
60
|
+
requirement: &70111072359240 !ruby/object:Gem::Requirement
|
|
61
|
+
none: false
|
|
62
|
+
requirements:
|
|
63
|
+
- - ! '>='
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '0'
|
|
66
|
+
type: :runtime
|
|
67
|
+
prerelease: false
|
|
68
|
+
version_requirements: *70111072359240
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rspec
|
|
71
|
+
requirement: &70111072358620 !ruby/object:Gem::Requirement
|
|
72
|
+
none: false
|
|
73
|
+
requirements:
|
|
74
|
+
- - ! '>='
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '0'
|
|
77
|
+
type: :development
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: *70111072358620
|
|
80
|
+
description: Atig.rb is Twitter Irc Gateway.
|
|
81
|
+
email:
|
|
82
|
+
- shibata.hiroshi@gmail.com
|
|
83
|
+
executables:
|
|
84
|
+
- atig
|
|
85
|
+
extensions: []
|
|
86
|
+
extra_rdoc_files: []
|
|
87
|
+
files:
|
|
88
|
+
- .gitignore
|
|
89
|
+
- Gemfile
|
|
90
|
+
- Gemfile.lock
|
|
91
|
+
- README.mkdn
|
|
92
|
+
- Rakefile
|
|
93
|
+
- atig.gemspec
|
|
94
|
+
- bin/atig
|
|
95
|
+
- docs/OMakefile
|
|
96
|
+
- docs/OMakeroot
|
|
97
|
+
- docs/_static/allow.png
|
|
98
|
+
- docs/_static/emacs.png
|
|
99
|
+
- docs/_static/irc_setting.png
|
|
100
|
+
- docs/_static/irssi.png
|
|
101
|
+
- docs/_static/limechat.png
|
|
102
|
+
- docs/_static/limechat_s.png
|
|
103
|
+
- docs/_static/oauth_channel.png
|
|
104
|
+
- docs/_static/screenshot.png
|
|
105
|
+
- docs/_static/structure.png
|
|
106
|
+
- docs/_static/verify.png
|
|
107
|
+
- docs/changelog.rst
|
|
108
|
+
- docs/commandline_options.rst
|
|
109
|
+
- docs/commands.rst
|
|
110
|
+
- docs/conf.py
|
|
111
|
+
- docs/config.rst
|
|
112
|
+
- docs/feature.rst
|
|
113
|
+
- docs/graphics.graffle
|
|
114
|
+
- docs/hacking_guide.rst
|
|
115
|
+
- docs/index.rst
|
|
116
|
+
- docs/irc.rst
|
|
117
|
+
- docs/options.rst
|
|
118
|
+
- docs/quickstart.rst
|
|
119
|
+
- docs/resize.sh
|
|
120
|
+
- docs/tiarra.rst
|
|
121
|
+
- docs/tig.rst
|
|
122
|
+
- lib/atig.rb
|
|
123
|
+
- lib/atig/agent.rb
|
|
124
|
+
- lib/atig/agent/agent.rb
|
|
125
|
+
- lib/atig/agent/clenup.rb
|
|
126
|
+
- lib/atig/agent/dm.rb
|
|
127
|
+
- lib/atig/agent/following.rb
|
|
128
|
+
- lib/atig/agent/full_list.rb
|
|
129
|
+
- lib/atig/agent/list.rb
|
|
130
|
+
- lib/atig/agent/list_status.rb
|
|
131
|
+
- lib/atig/agent/mention.rb
|
|
132
|
+
- lib/atig/agent/other_list.rb
|
|
133
|
+
- lib/atig/agent/own_list.rb
|
|
134
|
+
- lib/atig/agent/stream_follow.rb
|
|
135
|
+
- lib/atig/agent/timeline.rb
|
|
136
|
+
- lib/atig/agent/user_stream.rb
|
|
137
|
+
- lib/atig/basic_twitter.rb
|
|
138
|
+
- lib/atig/bitly.rb
|
|
139
|
+
- lib/atig/channel.rb
|
|
140
|
+
- lib/atig/channel/channel.rb
|
|
141
|
+
- lib/atig/channel/dm.rb
|
|
142
|
+
- lib/atig/channel/list.rb
|
|
143
|
+
- lib/atig/channel/mention.rb
|
|
144
|
+
- lib/atig/channel/retweet.rb
|
|
145
|
+
- lib/atig/channel/timeline.rb
|
|
146
|
+
- lib/atig/command.rb
|
|
147
|
+
- lib/atig/command/autofix.rb
|
|
148
|
+
- lib/atig/command/command.rb
|
|
149
|
+
- lib/atig/command/command_helper.rb
|
|
150
|
+
- lib/atig/command/destroy.rb
|
|
151
|
+
- lib/atig/command/dm.rb
|
|
152
|
+
- lib/atig/command/favorite.rb
|
|
153
|
+
- lib/atig/command/info.rb
|
|
154
|
+
- lib/atig/command/limit.rb
|
|
155
|
+
- lib/atig/command/location.rb
|
|
156
|
+
- lib/atig/command/name.rb
|
|
157
|
+
- lib/atig/command/option.rb
|
|
158
|
+
- lib/atig/command/refresh.rb
|
|
159
|
+
- lib/atig/command/reply.rb
|
|
160
|
+
- lib/atig/command/retweet.rb
|
|
161
|
+
- lib/atig/command/search.rb
|
|
162
|
+
- lib/atig/command/spam.rb
|
|
163
|
+
- lib/atig/command/status.rb
|
|
164
|
+
- lib/atig/command/thread.rb
|
|
165
|
+
- lib/atig/command/time.rb
|
|
166
|
+
- lib/atig/command/uptime.rb
|
|
167
|
+
- lib/atig/command/user.rb
|
|
168
|
+
- lib/atig/command/user_info.rb
|
|
169
|
+
- lib/atig/command/version.rb
|
|
170
|
+
- lib/atig/command/whois.rb
|
|
171
|
+
- lib/atig/db/db.rb
|
|
172
|
+
- lib/atig/db/followings.rb
|
|
173
|
+
- lib/atig/db/listenable.rb
|
|
174
|
+
- lib/atig/db/lists.rb
|
|
175
|
+
- lib/atig/db/roman.rb
|
|
176
|
+
- lib/atig/db/sized_uniq_array.rb
|
|
177
|
+
- lib/atig/db/sql.rb
|
|
178
|
+
- lib/atig/db/statuses.rb
|
|
179
|
+
- lib/atig/db/transaction.rb
|
|
180
|
+
- lib/atig/exception_util.rb
|
|
181
|
+
- lib/atig/gateway.rb
|
|
182
|
+
- lib/atig/gateway/channel.rb
|
|
183
|
+
- lib/atig/gateway/session.rb
|
|
184
|
+
- lib/atig/http.rb
|
|
185
|
+
- lib/atig/ifilter.rb
|
|
186
|
+
- lib/atig/ifilter/expand_url.rb
|
|
187
|
+
- lib/atig/ifilter/retweet.rb
|
|
188
|
+
- lib/atig/ifilter/retweet_time.rb
|
|
189
|
+
- lib/atig/ifilter/sanitize.rb
|
|
190
|
+
- lib/atig/ifilter/strip.rb
|
|
191
|
+
- lib/atig/ifilter/utf7.rb
|
|
192
|
+
- lib/atig/ifilter/xid.rb
|
|
193
|
+
- lib/atig/levenshtein.rb
|
|
194
|
+
- lib/atig/monkey.rb
|
|
195
|
+
- lib/atig/oauth-patch.rb
|
|
196
|
+
- lib/atig/oauth.rb
|
|
197
|
+
- lib/atig/ofilter.rb
|
|
198
|
+
- lib/atig/ofilter/escape_url.rb
|
|
199
|
+
- lib/atig/ofilter/footer.rb
|
|
200
|
+
- lib/atig/ofilter/geo.rb
|
|
201
|
+
- lib/atig/ofilter/short_url.rb
|
|
202
|
+
- lib/atig/option.rb
|
|
203
|
+
- lib/atig/scheduler.rb
|
|
204
|
+
- lib/atig/search.rb
|
|
205
|
+
- lib/atig/search_twitter.rb
|
|
206
|
+
- lib/atig/sized_hash.rb
|
|
207
|
+
- lib/atig/stream.rb
|
|
208
|
+
- lib/atig/twitter.rb
|
|
209
|
+
- lib/atig/twitter_struct.rb
|
|
210
|
+
- lib/atig/unu.rb
|
|
211
|
+
- lib/atig/update_checker.rb
|
|
212
|
+
- lib/atig/url_escape.rb
|
|
213
|
+
- lib/atig/util.rb
|
|
214
|
+
- lib/atig/version.rb
|
|
215
|
+
- lib/memory_profiler.rb
|
|
216
|
+
- spec/command/autofix_spec.rb
|
|
217
|
+
- spec/command/destroy_spec.rb
|
|
218
|
+
- spec/command/dm_spec.rb
|
|
219
|
+
- spec/command/favorite_spec.rb
|
|
220
|
+
- spec/command/limit_spec.rb
|
|
221
|
+
- spec/command/location_spec.rb
|
|
222
|
+
- spec/command/name_spec.rb
|
|
223
|
+
- spec/command/option_spec.rb
|
|
224
|
+
- spec/command/refresh_spec.rb
|
|
225
|
+
- spec/command/reply_spec.rb
|
|
226
|
+
- spec/command/retweet_spec.rb
|
|
227
|
+
- spec/command/spam_spec.rb
|
|
228
|
+
- spec/command/status_spec.rb
|
|
229
|
+
- spec/command/thread_spec.rb
|
|
230
|
+
- spec/command/time_spec.rb
|
|
231
|
+
- spec/command/uptime_spec.rb
|
|
232
|
+
- spec/command/user_info_spec.rb
|
|
233
|
+
- spec/command/user_spec.rb
|
|
234
|
+
- spec/command/version_spec.rb
|
|
235
|
+
- spec/command/whois_spec.rb
|
|
236
|
+
- spec/db/followings_spec.rb
|
|
237
|
+
- spec/db/listenable_spec.rb
|
|
238
|
+
- spec/db/lists_spec.rb
|
|
239
|
+
- spec/db/roman_spec.rb
|
|
240
|
+
- spec/db/sized_uniq_array_spec.rb
|
|
241
|
+
- spec/db/statuses_spec.rb
|
|
242
|
+
- spec/ifilter/expand_url_spec.rb
|
|
243
|
+
- spec/ifilter/retweet_spec.rb
|
|
244
|
+
- spec/ifilter/retweet_time_spec.rb
|
|
245
|
+
- spec/ifilter/sanitize_spec.rb
|
|
246
|
+
- spec/ifilter/sid_spec.rb
|
|
247
|
+
- spec/ifilter/strip_spec.rb
|
|
248
|
+
- spec/ifilter/tid_spec.rb
|
|
249
|
+
- spec/ifilter/utf7_spec.rb
|
|
250
|
+
- spec/levenshtein_spec.rb
|
|
251
|
+
- spec/ofilter/escape_url_spec.rb
|
|
252
|
+
- spec/ofilter/footer_spec.rb
|
|
253
|
+
- spec/ofilter/geo_spec.rb
|
|
254
|
+
- spec/ofilter/short_url_spec.rb
|
|
255
|
+
- spec/option_spec.rb
|
|
256
|
+
- spec/sized_hash_spec.rb
|
|
257
|
+
- spec/spec_helper.rb
|
|
258
|
+
- spec/update_checker_spec.rb
|
|
259
|
+
homepage: https://github.com/mzp/atig
|
|
260
|
+
licenses: []
|
|
261
|
+
post_install_message:
|
|
262
|
+
rdoc_options: []
|
|
263
|
+
require_paths:
|
|
264
|
+
- lib
|
|
265
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
266
|
+
none: false
|
|
267
|
+
requirements:
|
|
268
|
+
- - ! '>='
|
|
269
|
+
- !ruby/object:Gem::Version
|
|
270
|
+
version: '0'
|
|
271
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
272
|
+
none: false
|
|
273
|
+
requirements:
|
|
274
|
+
- - ! '>='
|
|
275
|
+
- !ruby/object:Gem::Version
|
|
276
|
+
version: '0'
|
|
277
|
+
requirements: []
|
|
278
|
+
rubyforge_project:
|
|
279
|
+
rubygems_version: 1.8.15
|
|
280
|
+
signing_key:
|
|
281
|
+
specification_version: 3
|
|
282
|
+
summary: Atig.rb is forked from cho45's tig.rb. We improve some features of tig.rb.
|
|
283
|
+
test_files:
|
|
284
|
+
- spec/command/autofix_spec.rb
|
|
285
|
+
- spec/command/destroy_spec.rb
|
|
286
|
+
- spec/command/dm_spec.rb
|
|
287
|
+
- spec/command/favorite_spec.rb
|
|
288
|
+
- spec/command/limit_spec.rb
|
|
289
|
+
- spec/command/location_spec.rb
|
|
290
|
+
- spec/command/name_spec.rb
|
|
291
|
+
- spec/command/option_spec.rb
|
|
292
|
+
- spec/command/refresh_spec.rb
|
|
293
|
+
- spec/command/reply_spec.rb
|
|
294
|
+
- spec/command/retweet_spec.rb
|
|
295
|
+
- spec/command/spam_spec.rb
|
|
296
|
+
- spec/command/status_spec.rb
|
|
297
|
+
- spec/command/thread_spec.rb
|
|
298
|
+
- spec/command/time_spec.rb
|
|
299
|
+
- spec/command/uptime_spec.rb
|
|
300
|
+
- spec/command/user_info_spec.rb
|
|
301
|
+
- spec/command/user_spec.rb
|
|
302
|
+
- spec/command/version_spec.rb
|
|
303
|
+
- spec/command/whois_spec.rb
|
|
304
|
+
- spec/db/followings_spec.rb
|
|
305
|
+
- spec/db/listenable_spec.rb
|
|
306
|
+
- spec/db/lists_spec.rb
|
|
307
|
+
- spec/db/roman_spec.rb
|
|
308
|
+
- spec/db/sized_uniq_array_spec.rb
|
|
309
|
+
- spec/db/statuses_spec.rb
|
|
310
|
+
- spec/ifilter/expand_url_spec.rb
|
|
311
|
+
- spec/ifilter/retweet_spec.rb
|
|
312
|
+
- spec/ifilter/retweet_time_spec.rb
|
|
313
|
+
- spec/ifilter/sanitize_spec.rb
|
|
314
|
+
- spec/ifilter/sid_spec.rb
|
|
315
|
+
- spec/ifilter/strip_spec.rb
|
|
316
|
+
- spec/ifilter/tid_spec.rb
|
|
317
|
+
- spec/ifilter/utf7_spec.rb
|
|
318
|
+
- spec/levenshtein_spec.rb
|
|
319
|
+
- spec/ofilter/escape_url_spec.rb
|
|
320
|
+
- spec/ofilter/footer_spec.rb
|
|
321
|
+
- spec/ofilter/geo_spec.rb
|
|
322
|
+
- spec/ofilter/short_url_spec.rb
|
|
323
|
+
- spec/option_spec.rb
|
|
324
|
+
- spec/sized_hash_spec.rb
|
|
325
|
+
- spec/spec_helper.rb
|
|
326
|
+
- spec/update_checker_spec.rb
|