tit 1.2.3 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.markdown CHANGED
@@ -1,3 +1,16 @@
1
+ # tit 1.2.5 2011-08-18
2
+
3
+ * some freaky fixes that i don't remember
4
+
5
+ # tit 1.2.4 2011-08-18
6
+
7
+ * gave --count a short tag -c
8
+
9
+ # tit 1.2.3 2011-08-18
10
+
11
+ * replace t.co urls with expanded urls.
12
+ * fix for options parser
13
+
1
14
  # tit 1.2.2 2011-08-18
2
15
 
3
16
  * freaking <3 all over the fucking twittersphere - decode that shit
@@ -43,4 +56,4 @@
43
56
  * can do polling
44
57
  * notifications
45
58
  * geotagging (read and write)
46
- * doesn't yet make twitter not stupid
59
+ * doesn't yet make twitter not stupid
data/VERSION.yml CHANGED
@@ -1,5 +1,4 @@
1
- ---
2
- :patch: 3
3
- :minor: 2
1
+ ---
4
2
  :major: 1
5
- :build:
3
+ :minor: 2
4
+ :patch: 5
data/bin/tit CHANGED
@@ -35,7 +35,7 @@ def main
35
35
  options[:action] = :mentions
36
36
  unchanged = false
37
37
  end
38
- opts.on("-u", "--user [USER]",
38
+ opts.on("-u", "--user [USERNAME]",
39
39
  "Show a particular user's timeline") do |user|
40
40
  unchanged = false
41
41
  options[:action] = :user_timeline
@@ -97,7 +97,7 @@ def main
97
97
  options[:debug] = true
98
98
  end
99
99
 
100
- opts.on_tail("--count [NUM_STATUSES]", "Set number of statuses you see") do |count|
100
+ opts.on_tail("-c", "--count [NUM_STATUSES]", "Set number of statuses you see") do |count|
101
101
  unchanged = false
102
102
  tit.update_count(count)
103
103
  end
@@ -137,7 +137,7 @@ def main
137
137
 
138
138
  # check for option errors
139
139
  if Tit::READERS.include? options[:action] and not options[:action].eql?(:user_timeline)
140
- tit.abort("cannot provide geotag when reading") unless options[:payload].nil?
140
+ tit.abort("cannot provide geotag when reading") unless options[:payload].nil? # should really be checking for options[:payload][:geo] or something
141
141
  tit.abort("cannot notify unless polling") if (options[:wait].nil? and
142
142
  not options[:notify].nil?)
143
143
  end
data/lib/tit.rb CHANGED
@@ -91,7 +91,7 @@ end
91
91
  Why are you reading the documentation, you cunt?
92
92
  =end
93
93
  class Tit
94
- VERSION = [1, 2, 3]
94
+ VERSION = [1, 2, 4]
95
95
 
96
96
  RCFILE = File.join(ENV["HOME"], ".titrc")
97
97
  RTFILE = File.join(ENV["HOME"], ".titrt")
data/tit.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{tit}
8
- s.version = "1.2.3"
8
+ s.version = "1.2.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Leif Walsh", "Parker Moore"]
@@ -55,4 +55,3 @@ Gem::Specification.new do |s|
55
55
  s.add_dependency(%q<htmlentities>, [">= 0"])
56
56
  end
57
57
  end
58
-
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tit
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 2
8
- - 3
9
- version: 1.2.3
4
+ prerelease:
5
+ version: 1.2.5
10
6
  platform: ruby
11
7
  authors:
12
8
  - Leif Walsh
@@ -15,18 +11,16 @@ autorequire:
15
11
  bindir: bin
16
12
  cert_chain: []
17
13
 
18
- date: 2010-01-26 00:00:00 -05:00
19
- default_executable: tit
14
+ date: 2010-01-26 00:00:00 Z
20
15
  dependencies:
21
16
  - !ruby/object:Gem::Dependency
22
17
  name: nokogiri
23
18
  prerelease: false
24
19
  requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
25
21
  requirements:
26
22
  - - ">="
27
23
  - !ruby/object:Gem::Version
28
- segments:
29
- - 0
30
24
  version: "0"
31
25
  type: :runtime
32
26
  version_requirements: *id001
@@ -34,11 +28,10 @@ dependencies:
34
28
  name: oauth
35
29
  prerelease: false
36
30
  requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
37
32
  requirements:
38
33
  - - ">="
39
34
  - !ruby/object:Gem::Version
40
- segments:
41
- - 0
42
35
  version: "0"
43
36
  type: :runtime
44
37
  version_requirements: *id002
@@ -46,11 +39,10 @@ dependencies:
46
39
  name: htmlentities
47
40
  prerelease: false
48
41
  requirement: &id003 !ruby/object:Gem::Requirement
42
+ none: false
49
43
  requirements:
50
44
  - - ">="
51
45
  - !ruby/object:Gem::Version
52
- segments:
53
- - 0
54
46
  version: "0"
55
47
  type: :runtime
56
48
  version_requirements: *id003
@@ -76,7 +68,6 @@ files:
76
68
  - bin/tit
77
69
  - lib/tit.rb
78
70
  - tit.gemspec
79
- has_rdoc: true
80
71
  homepage: http://github.com/adlaiff6/tit
81
72
  licenses: []
82
73
 
@@ -86,23 +77,21 @@ rdoc_options:
86
77
  require_paths:
87
78
  - lib
88
79
  required_ruby_version: !ruby/object:Gem::Requirement
80
+ none: false
89
81
  requirements:
90
82
  - - ">="
91
83
  - !ruby/object:Gem::Version
92
- segments:
93
- - 0
94
84
  version: "0"
95
85
  required_rubygems_version: !ruby/object:Gem::Requirement
86
+ none: false
96
87
  requirements:
97
88
  - - ">="
98
89
  - !ruby/object:Gem::Version
99
- segments:
100
- - 0
101
90
  version: "0"
102
91
  requirements: []
103
92
 
104
93
  rubyforge_project:
105
- rubygems_version: 1.3.6
94
+ rubygems_version: 1.8.8
106
95
  signing_key:
107
96
  specification_version: 3
108
97
  summary: stupid fucking twitter client