sup 0.15.3 → 0.15.4

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 ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NWExZWEzYjRhODk5ZGI5MGU1MDc3Mjg5OWU3NmE3YjI0Y2I4YzA4Mg==
5
+ data.tar.gz: !binary |-
6
+ YTA5YmU2MDgwNGZkZDc1MjMxMzg0NmJiNTg3NDU5NDNlMWIwMTUzNw==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NTllYmY1YmRiNGY0NzFmMzMxODY3MWNlM2M0NjllOWMzY2U3MDY5NWQ2MzE0
10
+ OTg1OTUyNzNiZTI0NTI1YWJjMmNhMjIwM2I3NTAyOWYzOWRmZmE5N2ExNGMy
11
+ NjJlMGRiYzMyZWE3ZDVhMzc2NDIwMWQ5OTMxNmI4YmQ3M2I3NTg=
12
+ data.tar.gz: !binary |-
13
+ NjcyZTBkMzMxYTU3OTg5Njc3NmNjOThhOGViYzYwZmUwODhkYTFkMWMxY2Nl
14
+ ZDE3NGE3MWY4YWZkNjU1MzYwZjc3MGE0MzU5NTRmOTQ5OWYzZTBiZmU2MTIx
15
+ YWI0ZDNiZGExZDNlNGM2NDAxMDk4MTAxOTNjMjhhMjJhZWNjMjM=
checksums.yaml.gz.sig ADDED
Binary file
data/CONTRIBUTORS CHANGED
@@ -33,14 +33,14 @@ Michael Hamann <michael at the content-space dot des>
33
33
  Jonathan Lassoff <jof at the thejof dot coms>
34
34
  William Erik Baxter <web at the superscript dot coms>
35
35
  Grant Hollingworth <grant at the antiflux dot orgs>
36
- Markus Klinik <markus.klinik at the gmx dot des>
37
36
  Adeodato Simó <dato at the net.com.org dot ess>
37
+ Markus Klinik <markus.klinik at the gmx dot des>
38
38
  Ico Doornekamp <ico at the pruts dot nls>
39
39
  Daniel Schoepe <daniel.schoepe at the googlemail dot coms>
40
- James Taylor <james at the jamestaylor dot orgs>
41
40
  Jason Petsod <jason at the petsod dot orgs>
42
- Robin Burchell <viroteck at the viroteck dot nets>
41
+ James Taylor <james at the jamestaylor dot orgs>
43
42
  Steve Goldman <sgoldman at the tower-research dot coms>
43
+ Robin Burchell <viroteck at the viroteck dot nets>
44
44
  Peter Harkins <ph at the malaprop dot orgs>
45
45
  Decklin Foster <decklin at the red-bean dot coms>
46
46
  Cameron Matheson <cam+sup at the cammunism dot orgs>
@@ -59,16 +59,17 @@ Steven Lawrance <stl at the koffein dot nets>
59
59
  Jonah <Jonah at the GoodCoffee dot cas>
60
60
  ian <itaylor at the uark dot edus>
61
61
  Todd Eisenberger <teisenbe at the andrew.cmu dot edus>
62
- MichaelRevell <mikearevell at the gmail dot coms>
63
- Adam Lloyd <adam at the alloy-d dot nets>
64
- Gregor Hoffleit <gregor at the sam.mediasupervision dot des>
65
62
  Per Andersson <avtobiff at the gmail dot coms>
63
+ Adam Lloyd <adam at the alloy-d dot nets>
64
+ MichaelRevell <mikearevell at the gmail dot coms>
66
65
  0xACE <0xACE at the users.noreply.github dot coms>
66
+ Gregor Hoffleit <gregor at the sam.mediasupervision dot des>
67
67
  Steven Walter <swalter at the monarch.(none)>
68
- Matthias Vallentin <vallentin at the icir dot orgs>
69
- Jon M. Dugan <jdugan at the es dot nets>
68
+ Atte Kojo <atte.kojo at the reaktor dot fis>
70
69
  Stefan Lundström <lundst at the snabb.(none)>
70
+ Matthias Vallentin <vallentin at the icir dot orgs>
71
71
  akojo <atte.kojo at the gmail dot coms>
72
72
  Horacio Sanson <horacio at the skillupjapan.co dot jps>
73
+ Jon M. Dugan <jdugan at the es dot nets>
73
74
  Johannes Larsen <johs.a.larsen at the gmail dot coms>
74
75
  Kirill Smelkov <kirr at the landau.phys.spbu dot rus>
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.15.4 / 2014-02-06
2
+
3
+ * Various bugfixes
4
+
1
5
  == 0.15.3 / 2014-01-27
2
6
 
3
7
  * Revert non-functioning hidden_alternates and fix some bugs.
data/ReleaseNotes CHANGED
@@ -1,3 +1,7 @@
1
+ Release 0.15.4:
2
+
3
+ Bugfixes.
4
+
1
5
  Release 0.15.3:
2
6
 
3
7
  Revert non-functioning hidden_alternates option and fix bugs.
data/lib/sup/buffer.rb CHANGED
@@ -633,7 +633,7 @@ EOS
633
633
  action, text = keymap.action_for c
634
634
  while action.is_a? Keymap # multi-key commands, prompt
635
635
  key = BufferManager.ask_getch text
636
- unless key.empty? # user canceled, abort
636
+ unless key # user canceled, abort
637
637
  erase_flash
638
638
  raise InputSequenceAborted
639
639
  end
data/lib/sup/colormap.rb CHANGED
@@ -1,4 +1,4 @@
1
- module Curses
1
+ module Ncurses
2
2
  COLOR_DEFAULT = -1
3
3
 
4
4
  NUM_COLORS = `tput colors`.to_i
@@ -9,9 +9,9 @@ module Curses
9
9
  end
10
10
 
11
11
  ## numeric colors
12
- Curses::NUM_COLORS.times { |x| color! x, x }
12
+ Ncurses::NUM_COLORS.times { |x| color! x, x }
13
13
 
14
- if Curses::NUM_COLORS == 256
14
+ if Ncurses::NUM_COLORS == 256
15
15
  ## xterm 6x6x6 color cube
16
16
  6.times { |x| 6.times { |y| 6.times { |z| color! "c#{x}#{y}#{z}", 16 + z + 6*y + 36*x } } }
17
17
 
@@ -71,7 +71,7 @@ class Colormap
71
71
  def initialize
72
72
  raise "only one instance can be created" if @@instance
73
73
  @@instance = self
74
- @color_pairs = {[Curses::COLOR_WHITE, Curses::COLOR_BLACK] => 0}
74
+ @color_pairs = {[Ncurses::COLOR_WHITE, Ncurses::COLOR_BLACK] => 0}
75
75
  @users = []
76
76
  @next_id = 0
77
77
  reset
@@ -81,15 +81,15 @@ class Colormap
81
81
  def reset
82
82
  @entries = {}
83
83
  @highlights = { :none => highlight_sym(:none)}
84
- @entries[highlight_sym(:none)] = highlight_for(Curses::COLOR_WHITE,
85
- Curses::COLOR_BLACK,
84
+ @entries[highlight_sym(:none)] = highlight_for(Ncurses::COLOR_WHITE,
85
+ Ncurses::COLOR_BLACK,
86
86
  []) + [nil]
87
87
  end
88
88
 
89
89
  def add sym, fg, bg, attr=nil, highlight=nil
90
90
  raise ArgumentError, "color for #{sym} already defined" if @entries.member? sym
91
- raise ArgumentError, "color '#{fg}' unknown" unless (-1...Curses::NUM_COLORS).include? fg
92
- raise ArgumentError, "color '#{bg}' unknown" unless (-1...Curses::NUM_COLORS).include? bg
91
+ raise ArgumentError, "color '#{fg}' unknown" unless (-1...Ncurses::NUM_COLORS).include? fg
92
+ raise ArgumentError, "color '#{bg}' unknown" unless (-1...Ncurses::NUM_COLORS).include? bg
93
93
  attrs = [attr].flatten.compact
94
94
 
95
95
  @entries[sym] = [fg, bg, attrs, nil]
@@ -109,33 +109,33 @@ class Colormap
109
109
  def highlight_for fg, bg, attrs
110
110
  hfg =
111
111
  case fg
112
- when Curses::COLOR_BLUE
113
- Curses::COLOR_WHITE
114
- when Curses::COLOR_YELLOW, Curses::COLOR_GREEN
112
+ when Ncurses::COLOR_BLUE
113
+ Ncurses::COLOR_WHITE
114
+ when Ncurses::COLOR_YELLOW, Ncurses::COLOR_GREEN
115
115
  fg
116
116
  else
117
- Curses::COLOR_BLACK
117
+ Ncurses::COLOR_BLACK
118
118
  end
119
119
 
120
120
  hbg =
121
121
  case bg
122
- when Curses::COLOR_CYAN
123
- Curses::COLOR_YELLOW
124
- when Curses::COLOR_YELLOW
125
- Curses::COLOR_BLUE
122
+ when Ncurses::COLOR_CYAN
123
+ Ncurses::COLOR_YELLOW
124
+ when Ncurses::COLOR_YELLOW
125
+ Ncurses::COLOR_BLUE
126
126
  else
127
- Curses::COLOR_CYAN
127
+ Ncurses::COLOR_CYAN
128
128
  end
129
129
 
130
130
  attrs =
131
- if fg == Curses::COLOR_WHITE && attrs.include?(Curses::A_BOLD)
132
- [Curses::A_BOLD]
131
+ if fg == Ncurses::COLOR_WHITE && attrs.include?(Ncurses::A_BOLD)
132
+ [Ncurses::A_BOLD]
133
133
  else
134
134
  case hfg
135
- when Curses::COLOR_BLACK
135
+ when Ncurses::COLOR_BLACK
136
136
  []
137
137
  else
138
- [Curses::A_BOLD]
138
+ [Ncurses::A_BOLD]
139
139
  end
140
140
  end
141
141
  [hfg, hbg, attrs]
@@ -143,7 +143,7 @@ class Colormap
143
143
 
144
144
  def color_for sym, highlight=false
145
145
  sym = @highlights[sym] if highlight
146
- return Curses::COLOR_BLACK if sym == :none
146
+ return Ncurses::COLOR_BLACK if sym == :none
147
147
  raise ArgumentError, "undefined color #{sym}" unless @entries.member? sym
148
148
 
149
149
  ## if this color is cached, return it
@@ -153,14 +153,14 @@ class Colormap
153
153
  if(cp = @color_pairs[[fg, bg]])
154
154
  ## nothing
155
155
  else ## need to get a new colorpair
156
- @next_id = (@next_id + 1) % Curses::MAX_PAIRS
156
+ @next_id = (@next_id + 1) % Ncurses::MAX_PAIRS
157
157
  @next_id += 1 if @next_id == 0 # 0 is always white on black
158
158
  id = @next_id
159
159
  debug "colormap: for color #{sym}, using id #{id} -> #{fg}, #{bg}"
160
- Curses.init_pair id, fg, bg or raise ArgumentError,
160
+ Ncurses.init_pair id, fg, bg or raise ArgumentError,
161
161
  "couldn't initialize curses color pair #{fg}, #{bg} (key #{id})"
162
162
 
163
- cp = @color_pairs[[fg, bg]] = Curses.color_pair(id)
163
+ cp = @color_pairs[[fg, bg]] = Ncurses.COLOR_PAIR(id)
164
164
  ## delete the old mapping, if it exists
165
165
  if @users[cp]
166
166
  @users[cp].each do |usym|
@@ -192,22 +192,22 @@ class Colormap
192
192
 
193
193
  Colormap::DEFAULT_COLORS.merge(user_colors||{}).each_pair do |k, v|
194
194
  fg = begin
195
- Curses.const_get "COLOR_#{v[:fg].to_s.upcase}"
195
+ Ncurses.const_get "COLOR_#{v[:fg].to_s.upcase}"
196
196
  rescue NameError
197
197
  warn "there is no color named \"#{v[:fg]}\""
198
- Curses::COLOR_GREEN
198
+ Ncurses::COLOR_GREEN
199
199
  end
200
200
 
201
201
  bg = begin
202
- Curses.const_get "COLOR_#{v[:bg].to_s.upcase}"
202
+ Ncurses.const_get "COLOR_#{v[:bg].to_s.upcase}"
203
203
  rescue NameError
204
204
  warn "there is no color named \"#{v[:bg]}\""
205
- Curses::COLOR_RED
205
+ Ncurses::COLOR_RED
206
206
  end
207
207
 
208
208
  attrs = (v[:attrs]||[]).map do |a|
209
209
  begin
210
- Curses.const_get "A_#{a.upcase}"
210
+ Ncurses.const_get "A_#{a.upcase}"
211
211
  rescue NameError
212
212
  warn "there is no attribute named \"#{a}\", using fallback."
213
213
  nil
data/lib/sup/keymap.rb CHANGED
@@ -19,19 +19,19 @@ EOS
19
19
 
20
20
  def self.keysym_to_keycode k
21
21
  case k
22
- when :down then Curses::KEY_DOWN
23
- when :up then Curses::KEY_UP
24
- when :left then Curses::KEY_LEFT
25
- when :right then Curses::KEY_RIGHT
26
- when :page_down then Curses::KEY_NPAGE
27
- when :page_up then Curses::KEY_PPAGE
28
- when :backspace then Curses::KEY_BACKSPACE
29
- when :home then Curses::KEY_HOME
30
- when :end then Curses::KEY_END
22
+ when :down then Ncurses::KEY_DOWN
23
+ when :up then Ncurses::KEY_UP
24
+ when :left then Ncurses::KEY_LEFT
25
+ when :right then Ncurses::KEY_RIGHT
26
+ when :page_down then Ncurses::KEY_NPAGE
27
+ when :page_up then Ncurses::KEY_PPAGE
28
+ when :backspace then Ncurses::KEY_BACKSPACE
29
+ when :home then Ncurses::KEY_HOME
30
+ when :end then Ncurses::KEY_END
31
31
  when :ctrl_l then "\f".ord
32
32
  when :ctrl_g then "\a".ord
33
33
  when :tab then "\t".ord
34
- when :enter, :return then 10 #Curses::KEY_ENTER
34
+ when :enter, :return then 10 #Ncurses::KEY_ENTER
35
35
  else
36
36
  if k.is_a?(String) && k.length == 1
37
37
  k.ord
@@ -56,7 +56,7 @@ EOS
56
56
  when :tab then "tab"
57
57
  when " " then "<space>"
58
58
  else
59
- Curses::keyname(keysym_to_keycode(k))
59
+ Ncurses::keyname(keysym_to_keycode(k))
60
60
  end
61
61
  end
62
62
 
@@ -239,7 +239,7 @@ EOS
239
239
  else hookcmd
240
240
  end + ' ' + to.map { |t| t.email }.join(' ')
241
241
 
242
- bt = to.size > 1 ? "#{to.size} recipients" : to.to_s
242
+ bt = to.size > 1 ? "#{to.size} recipients" : to[0].to_s
243
243
 
244
244
  if BufferManager.ask_yes_or_no "Really bounce to #{bt}?"
245
245
  debug "bounce command: #{cmd}"
data/lib/sup/textfield.rb CHANGED
@@ -234,6 +234,7 @@ private
234
234
  end
235
235
 
236
236
  def set_cursed_value v
237
+ v = "" if v.nil?
237
238
  @field.set_field_buffer 0, v
238
239
  end
239
240
 
data/lib/sup/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Redwood
2
- VERSION = "0.15.3"
2
+ VERSION = "0.15.4"
3
3
  end
data/lib/sup.rb CHANGED
@@ -7,7 +7,7 @@ require 'zlib'
7
7
  require 'thread'
8
8
  require 'fileutils'
9
9
  require 'locale'
10
- require 'curses'
10
+ require 'ncursesw'
11
11
  require 'rmail'
12
12
  begin
13
13
  require 'fastthread'
@@ -253,7 +253,7 @@ EOS
253
253
 
254
254
  managers.each { |x| x.deinstantiate! if x.instantiated? }
255
255
 
256
- @log_io.close
256
+ @log_io.close if @log_io
257
257
  @log_io = nil
258
258
  $config = nil
259
259
  end
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,13 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.3
5
- prerelease:
6
- segments:
7
- - 0
8
- - 15
9
- - 3
10
- hash: -2405845392112023889
4
+ version: 0.15.4
11
5
  platform: ruby
12
6
  authors:
13
7
  - William Morgan
@@ -16,13 +10,41 @@ authors:
16
10
  - Matthieu Rakotojaona
17
11
  autorequire:
18
12
  bindir: bin
19
- cert_chain: []
20
- date: 2014-01-27 00:00:00.000000000 Z
13
+ cert_chain:
14
+ - !binary |-
15
+ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURWRENDQWp5Z0F3SUJB
16
+ Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREJRTVFzd0NRWURWUVFEREFKbFp6
17
+ RVYKTUJNR0NnbVNKb21UOGl4a0FSa1dCV2RoZFhSbE1SVXdFd1lLQ1pJbWla
18
+ UHlMR1FCR1JZRmRtVjBjMm94RXpBUgpCZ29Ka2lhSmsvSXNaQUVaRmdOamIy
19
+ MHdIaGNOTVRNd05UQTRNVEF6T0RRM1doY05NVFF3TlRBNE1UQXpPRFEzCldq
20
+ QlFNUXN3Q1FZRFZRUUREQUpsWnpFVk1CTUdDZ21TSm9tVDhpeGtBUmtXQldk
21
+ aGRYUmxNUlV3RXdZS0NaSW0KaVpQeUxHUUJHUllGZG1WMGMyb3hFekFSQmdv
22
+ SmtpYUprL0lzWkFFWkZnTmpiMjB3Z2dFaU1BMEdDU3FHU0liMwpEUUVCQVFV
23
+ QUE0SUJEd0F3Z2dFS0FvSUJBUUM3c05jNXpZNE1yWUI3ZXl3RS9hSzJJb0Rx
24
+ cE05bHE0WkZsSHp0ClBtcTFMRzZhaDJsdS9IZmpxeGlQb3F3WTdRa2RTT0dE
25
+ TFNrN0c4WUJxREEvdE9EaGtQUFNUcXhCRHpZeUNPNDYKaGFXVHRvTjV0Smt4
26
+ SURKS3AxblZYSGkwTWxiNEdKVktkOVAwcTk1QmVCWUJmczh2eVBOK3k0YjRH
27
+ ZWJneDlVMwpLcU1EYmU1aDlNQVBaR210aVJGTWIzdWdtaXVqRG03djhmQUNh
28
+ NUV0U3ZLL2x4TWtSRGdsZWNUL2tuRTk5TllJCmwzNVNPL0J1bmUxYnhZbWt3
29
+ VzY0bVE0d1JsR1ZlQW5YKzE5bXNBTGZTOXJkSkwyNmRmVzJMZ3FXaTVRb1ZU
30
+ QkgKS05LVGwvaTNmeEswbXpndG5vUkNXZE1KUUZOTm9uRlRuUFVVYXdpMWM5
31
+ S2g0QWRQQWdNQkFBR2pPVEEzTUFrRwpBMVVkRXdRQ01BQXdIUVlEVlIwT0JC
32
+ WUVGSk5DT3hMMFNXY2JXMk0rRElFVXpBTXoxYlpzTUFzR0ExVWREd1FFCkF3
33
+ SUVzREFOQmdrcWhraUc5dzBCQVFVRkFBT0NBUUVBcjNRVWF5ZDBnZUJERXhP
34
+ K1d3emFFUEF1VVozeldRWUcKRzl2cnBsQ2ttSnRqUy9YL3dWQWVmN0puL1Y1
35
+ TU5rWEtYc2lPZ1hKWGtpK243SHVsTlpVZjFyenI3VW45NmdWSgoxaHEvWlR1
36
+ YXBuUHBzdEJxcWR2NjBSQjhITkd5ZEhRZUV6NnVzNXozbmorS2NoUHFKNjU3
37
+ RHo4b1gvTm02LzI0CjdRU1FwQ2g4eEJZZFNXRXBvSUUwelVTWTc3THRWVFJW
38
+ d0lyOXVEcFdUVHI5a0NWQklOQnNPUU5qV0tydUVXalYKK0pNdURzK2lXZWZw
39
+ RjRSM0J5U29PYzFRNFdvRVMzK29jMHFvMzdNc0FaeWZuUUlQVFpreUxaQ014
40
+ ZUw2TWhhNApoRmMyeUFOQmo4dm9hWTVDNzRDZzJWcUV4dGNuU2F4VXRXOXdD
41
+ NHc1aE9sZzBBVmZiMUpXemc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0t
42
+ Cg==
43
+ date: 2014-02-06 00:00:00.000000000 Z
21
44
  dependencies:
22
45
  - !ruby/object:Gem::Dependency
23
46
  name: xapian-ruby
24
47
  requirement: !ruby/object:Gem::Requirement
25
- none: false
26
48
  requirements:
27
49
  - - ~>
28
50
  - !ruby/object:Gem::Version
@@ -30,7 +52,6 @@ dependencies:
30
52
  type: :runtime
31
53
  prerelease: false
32
54
  version_requirements: !ruby/object:Gem::Requirement
33
- none: false
34
55
  requirements:
35
56
  - - ~>
36
57
  - !ruby/object:Gem::Version
@@ -38,7 +59,6 @@ dependencies:
38
59
  - !ruby/object:Gem::Dependency
39
60
  name: ncursesw
40
61
  requirement: !ruby/object:Gem::Requirement
41
- none: false
42
62
  requirements:
43
63
  - - ~>
44
64
  - !ruby/object:Gem::Version
@@ -46,7 +66,6 @@ dependencies:
46
66
  type: :runtime
47
67
  prerelease: false
48
68
  version_requirements: !ruby/object:Gem::Requirement
49
- none: false
50
69
  requirements:
51
70
  - - ~>
52
71
  - !ruby/object:Gem::Version
@@ -54,7 +73,6 @@ dependencies:
54
73
  - !ruby/object:Gem::Dependency
55
74
  name: rmail-sup
56
75
  requirement: !ruby/object:Gem::Requirement
57
- none: false
58
76
  requirements:
59
77
  - - ~>
60
78
  - !ruby/object:Gem::Version
@@ -62,7 +80,6 @@ dependencies:
62
80
  type: :runtime
63
81
  prerelease: false
64
82
  version_requirements: !ruby/object:Gem::Requirement
65
- none: false
66
83
  requirements:
67
84
  - - ~>
68
85
  - !ruby/object:Gem::Version
@@ -70,7 +87,6 @@ dependencies:
70
87
  - !ruby/object:Gem::Dependency
71
88
  name: highline
72
89
  requirement: !ruby/object:Gem::Requirement
73
- none: false
74
90
  requirements:
75
91
  - - ! '>='
76
92
  - !ruby/object:Gem::Version
@@ -78,7 +94,6 @@ dependencies:
78
94
  type: :runtime
79
95
  prerelease: false
80
96
  version_requirements: !ruby/object:Gem::Requirement
81
- none: false
82
97
  requirements:
83
98
  - - ! '>='
84
99
  - !ruby/object:Gem::Version
@@ -86,7 +101,6 @@ dependencies:
86
101
  - !ruby/object:Gem::Dependency
87
102
  name: trollop
88
103
  requirement: !ruby/object:Gem::Requirement
89
- none: false
90
104
  requirements:
91
105
  - - ! '>='
92
106
  - !ruby/object:Gem::Version
@@ -94,7 +108,6 @@ dependencies:
94
108
  type: :runtime
95
109
  prerelease: false
96
110
  version_requirements: !ruby/object:Gem::Requirement
97
- none: false
98
111
  requirements:
99
112
  - - ! '>='
100
113
  - !ruby/object:Gem::Version
@@ -102,7 +115,6 @@ dependencies:
102
115
  - !ruby/object:Gem::Dependency
103
116
  name: lockfile
104
117
  requirement: !ruby/object:Gem::Requirement
105
- none: false
106
118
  requirements:
107
119
  - - ! '>='
108
120
  - !ruby/object:Gem::Version
@@ -110,7 +122,6 @@ dependencies:
110
122
  type: :runtime
111
123
  prerelease: false
112
124
  version_requirements: !ruby/object:Gem::Requirement
113
- none: false
114
125
  requirements:
115
126
  - - ! '>='
116
127
  - !ruby/object:Gem::Version
@@ -118,7 +129,6 @@ dependencies:
118
129
  - !ruby/object:Gem::Dependency
119
130
  name: mime-types
120
131
  requirement: !ruby/object:Gem::Requirement
121
- none: false
122
132
  requirements:
123
133
  - - ~>
124
134
  - !ruby/object:Gem::Version
@@ -126,7 +136,6 @@ dependencies:
126
136
  type: :runtime
127
137
  prerelease: false
128
138
  version_requirements: !ruby/object:Gem::Requirement
129
- none: false
130
139
  requirements:
131
140
  - - ~>
132
141
  - !ruby/object:Gem::Version
@@ -134,7 +143,6 @@ dependencies:
134
143
  - !ruby/object:Gem::Dependency
135
144
  name: locale
136
145
  requirement: !ruby/object:Gem::Requirement
137
- none: false
138
146
  requirements:
139
147
  - - ~>
140
148
  - !ruby/object:Gem::Version
@@ -142,7 +150,6 @@ dependencies:
142
150
  type: :runtime
143
151
  prerelease: false
144
152
  version_requirements: !ruby/object:Gem::Requirement
145
- none: false
146
153
  requirements:
147
154
  - - ~>
148
155
  - !ruby/object:Gem::Version
@@ -150,7 +157,6 @@ dependencies:
150
157
  - !ruby/object:Gem::Dependency
151
158
  name: chronic
152
159
  requirement: !ruby/object:Gem::Requirement
153
- none: false
154
160
  requirements:
155
161
  - - ~>
156
162
  - !ruby/object:Gem::Version
@@ -158,7 +164,6 @@ dependencies:
158
164
  type: :runtime
159
165
  prerelease: false
160
166
  version_requirements: !ruby/object:Gem::Requirement
161
- none: false
162
167
  requirements:
163
168
  - - ~>
164
169
  - !ruby/object:Gem::Version
@@ -166,7 +171,6 @@ dependencies:
166
171
  - !ruby/object:Gem::Dependency
167
172
  name: unicode
168
173
  requirement: !ruby/object:Gem::Requirement
169
- none: false
170
174
  requirements:
171
175
  - - ~>
172
176
  - !ruby/object:Gem::Version
@@ -174,7 +178,6 @@ dependencies:
174
178
  type: :runtime
175
179
  prerelease: false
176
180
  version_requirements: !ruby/object:Gem::Requirement
177
- none: false
178
181
  requirements:
179
182
  - - ~>
180
183
  - !ruby/object:Gem::Version
@@ -182,7 +185,6 @@ dependencies:
182
185
  - !ruby/object:Gem::Dependency
183
186
  name: bundler
184
187
  requirement: !ruby/object:Gem::Requirement
185
- none: false
186
188
  requirements:
187
189
  - - ~>
188
190
  - !ruby/object:Gem::Version
@@ -190,7 +192,6 @@ dependencies:
190
192
  type: :development
191
193
  prerelease: false
192
194
  version_requirements: !ruby/object:Gem::Requirement
193
- none: false
194
195
  requirements:
195
196
  - - ~>
196
197
  - !ruby/object:Gem::Version
@@ -198,7 +199,6 @@ dependencies:
198
199
  - !ruby/object:Gem::Dependency
199
200
  name: rake
200
201
  requirement: !ruby/object:Gem::Requirement
201
- none: false
202
202
  requirements:
203
203
  - - ! '>='
204
204
  - !ruby/object:Gem::Version
@@ -206,7 +206,6 @@ dependencies:
206
206
  type: :development
207
207
  prerelease: false
208
208
  version_requirements: !ruby/object:Gem::Requirement
209
- none: false
210
209
  requirements:
211
210
  - - ! '>='
212
211
  - !ruby/object:Gem::Version
@@ -214,7 +213,6 @@ dependencies:
214
213
  - !ruby/object:Gem::Dependency
215
214
  name: minitest
216
215
  requirement: !ruby/object:Gem::Requirement
217
- none: false
218
216
  requirements:
219
217
  - - ~>
220
218
  - !ruby/object:Gem::Version
@@ -222,7 +220,6 @@ dependencies:
222
220
  type: :development
223
221
  prerelease: false
224
222
  version_requirements: !ruby/object:Gem::Requirement
225
- none: false
226
223
  requirements:
227
224
  - - ~>
228
225
  - !ruby/object:Gem::Version
@@ -230,7 +227,6 @@ dependencies:
230
227
  - !ruby/object:Gem::Dependency
231
228
  name: rr
232
229
  requirement: !ruby/object:Gem::Requirement
233
- none: false
234
230
  requirements:
235
231
  - - ~>
236
232
  - !ruby/object:Gem::Version
@@ -238,7 +234,6 @@ dependencies:
238
234
  type: :development
239
235
  prerelease: false
240
236
  version_requirements: !ruby/object:Gem::Requirement
241
- none: false
242
237
  requirements:
243
238
  - - ~>
244
239
  - !ruby/object:Gem::Version
@@ -246,7 +241,6 @@ dependencies:
246
241
  - !ruby/object:Gem::Dependency
247
242
  name: gpgme
248
243
  requirement: !ruby/object:Gem::Requirement
249
- none: false
250
244
  requirements:
251
245
  - - ! '>='
252
246
  - !ruby/object:Gem::Version
@@ -254,7 +248,6 @@ dependencies:
254
248
  type: :development
255
249
  prerelease: false
256
250
  version_requirements: !ruby/object:Gem::Requirement
257
- none: false
258
251
  requirements:
259
252
  - - ! '>='
260
253
  - !ruby/object:Gem::Version
@@ -282,89 +275,90 @@ extensions: []
282
275
  extra_rdoc_files: []
283
276
  files:
284
277
  - CONTRIBUTORS
285
- - README.md
286
- - LICENSE
287
278
  - History.txt
279
+ - LICENSE
280
+ - README.md
288
281
  - ReleaseNotes
289
282
  - bin/sup
290
283
  - bin/sup-add
291
284
  - bin/sup-config
292
285
  - bin/sup-dump
293
286
  - bin/sup-import-dump
287
+ - bin/sup-psych-ify-config-files
294
288
  - bin/sup-recover-sources
295
289
  - bin/sup-sync
296
290
  - bin/sup-sync-back-maildir
297
291
  - bin/sup-sync-back-mbox
298
292
  - bin/sup-tweak-labels
299
- - bin/sup-psych-ify-config-files
293
+ - lib/sup.rb
294
+ - lib/sup/account.rb
295
+ - lib/sup/buffer.rb
296
+ - lib/sup/colormap.rb
297
+ - lib/sup/contact.rb
298
+ - lib/sup/crypto.rb
299
+ - lib/sup/draft.rb
300
300
  - lib/sup/hook.rb
301
- - lib/sup/util/query.rb
302
- - lib/sup/util/uri.rb
303
- - lib/sup/util/path.rb
304
- - lib/sup/util/ncurses.rb
305
301
  - lib/sup/horizontal_selector.rb
306
- - lib/sup/modes/line_cursor_mode.rb
307
- - lib/sup/modes/label_list_mode.rb
302
+ - lib/sup/idle.rb
303
+ - lib/sup/index.rb
304
+ - lib/sup/interactive_lock.rb
305
+ - lib/sup/keymap.rb
306
+ - lib/sup/label.rb
307
+ - lib/sup/logger.rb
308
+ - lib/sup/logger/singleton.rb
309
+ - lib/sup/maildir.rb
310
+ - lib/sup/mbox.rb
311
+ - lib/sup/message.rb
312
+ - lib/sup/message_chunks.rb
313
+ - lib/sup/mode.rb
314
+ - lib/sup/modes/buffer_list_mode.rb
308
315
  - lib/sup/modes/completion_mode.rb
309
316
  - lib/sup/modes/compose_mode.rb
310
- - lib/sup/modes/search_results_mode.rb
311
- - lib/sup/modes/thread_view_mode.rb
312
- - lib/sup/modes/thread_index_mode.rb
313
317
  - lib/sup/modes/console_mode.rb
314
- - lib/sup/modes/resume_mode.rb
315
- - lib/sup/modes/person_search_results_mode.rb
316
- - lib/sup/modes/buffer_list_mode.rb
318
+ - lib/sup/modes/contact_list_mode.rb
319
+ - lib/sup/modes/edit_message_async_mode.rb
317
320
  - lib/sup/modes/edit_message_mode.rb
318
- - lib/sup/modes/log_mode.rb
319
- - lib/sup/modes/poll_mode.rb
321
+ - lib/sup/modes/file_browser_mode.rb
322
+ - lib/sup/modes/forward_mode.rb
320
323
  - lib/sup/modes/help_mode.rb
324
+ - lib/sup/modes/inbox_mode.rb
325
+ - lib/sup/modes/label_list_mode.rb
321
326
  - lib/sup/modes/label_search_results_mode.rb
322
- - lib/sup/modes/search_list_mode.rb
323
- - lib/sup/modes/scroll_mode.rb
327
+ - lib/sup/modes/line_cursor_mode.rb
328
+ - lib/sup/modes/log_mode.rb
329
+ - lib/sup/modes/person_search_results_mode.rb
330
+ - lib/sup/modes/poll_mode.rb
324
331
  - lib/sup/modes/reply_mode.rb
332
+ - lib/sup/modes/resume_mode.rb
333
+ - lib/sup/modes/scroll_mode.rb
334
+ - lib/sup/modes/search_list_mode.rb
335
+ - lib/sup/modes/search_results_mode.rb
325
336
  - lib/sup/modes/text_mode.rb
326
- - lib/sup/modes/forward_mode.rb
327
- - lib/sup/modes/inbox_mode.rb
328
- - lib/sup/modes/file_browser_mode.rb
329
- - lib/sup/modes/contact_list_mode.rb
330
- - lib/sup/modes/edit_message_async_mode.rb
331
- - lib/sup/logger/singleton.rb
332
- - lib/sup/mbox.rb
333
- - lib/sup/undo.rb
334
- - lib/sup/tagger.rb
335
- - lib/sup/message.rb
336
- - lib/sup/account.rb
337
- - lib/sup/time.rb
338
- - lib/sup/util.rb
339
- - lib/sup/thread.rb
340
- - lib/sup/source.rb
341
- - lib/sup/keymap.rb
337
+ - lib/sup/modes/thread_index_mode.rb
338
+ - lib/sup/modes/thread_view_mode.rb
342
339
  - lib/sup/person.rb
343
- - lib/sup/colormap.rb
344
- - lib/sup/maildir.rb
345
- - lib/sup/interactive_lock.rb
346
- - lib/sup/service/label_service.rb
347
- - lib/sup/crypto.rb
348
- - lib/sup/search.rb
349
- - lib/sup/idle.rb
350
- - lib/sup/version.rb
351
- - lib/sup/buffer.rb
352
- - lib/sup/sent.rb
353
- - lib/sup/logger.rb
354
- - lib/sup/draft.rb
355
- - lib/sup/contact.rb
356
- - lib/sup/update.rb
357
- - lib/sup/mode.rb
358
- - lib/sup/label.rb
359
- - lib/sup/index.rb
360
340
  - lib/sup/poll.rb
361
- - lib/sup/message_chunks.rb
362
341
  - lib/sup/rfc2047.rb
342
+ - lib/sup/search.rb
343
+ - lib/sup/sent.rb
344
+ - lib/sup/service/label_service.rb
345
+ - lib/sup/source.rb
346
+ - lib/sup/tagger.rb
363
347
  - lib/sup/textfield.rb
364
- - lib/sup.rb
348
+ - lib/sup/thread.rb
349
+ - lib/sup/time.rb
350
+ - lib/sup/undo.rb
351
+ - lib/sup/update.rb
352
+ - lib/sup/util.rb
353
+ - lib/sup/util/ncurses.rb
354
+ - lib/sup/util/path.rb
355
+ - lib/sup/util/query.rb
356
+ - lib/sup/util/uri.rb
357
+ - lib/sup/version.rb
365
358
  homepage: http://supmua.org
366
359
  licenses:
367
360
  - GPL-2
361
+ metadata: {}
368
362
  post_install_message: ! "SUP: If you are upgrading Sup from before version 0.14.0:
369
363
  Please\n run `sup-psych-ify-config-files` to migrate from 0.13.\n\n Check
370
364
  https://github.com/sup-heliotrope/sup/wiki/Migration-0.13-to-0.14\n for more
@@ -373,21 +367,19 @@ rdoc_options: []
373
367
  require_paths:
374
368
  - lib
375
369
  required_ruby_version: !ruby/object:Gem::Requirement
376
- none: false
377
370
  requirements:
378
371
  - - ! '>='
379
372
  - !ruby/object:Gem::Version
380
373
  version: 1.9.2
381
374
  required_rubygems_version: !ruby/object:Gem::Requirement
382
- none: false
383
375
  requirements:
384
376
  - - ! '>='
385
377
  - !ruby/object:Gem::Version
386
378
  version: '0'
387
379
  requirements: []
388
380
  rubyforge_project:
389
- rubygems_version: 1.8.25
381
+ rubygems_version: 2.2.1
390
382
  signing_key:
391
- specification_version: 3
383
+ specification_version: 4
392
384
  summary: A console-based email client with the best features of GMail, mutt and Emacs
393
385
  test_files: []
metadata.gz.sig ADDED
Binary file