thor 0.15.1 → 0.15.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - jruby-18mode
4
- - jruby-19mode
5
3
  - 1.8.7
6
4
  - 1.9.2
7
5
  - 1.9.3
data/Gemfile CHANGED
@@ -2,10 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- platforms :jruby do
6
- gem 'jruby-openssl', '~> 0.7'
7
- end
8
-
9
5
  platforms :mri_18 do
10
6
  gem 'ruby-debug', '>= 0.10.3'
11
7
  end
@@ -23,7 +23,7 @@ class Thor
23
23
  end
24
24
 
25
25
  module Shell
26
- SHELL_DELEGATED_METHODS = [:ask, :error, :set_color, :yes?, :no?, :say, :say_status, :print_table, :print_wrapped, :file_collision]
26
+ SHELL_DELEGATED_METHODS = [:ask, :error, :set_color, :yes?, :no?, :say, :say_status, :print_in_columns, :print_table, :print_wrapped, :file_collision, :terminal_width]
27
27
 
28
28
  autoload :Basic, 'thor/shell/basic'
29
29
  autoload :Color, 'thor/shell/color'
@@ -103,6 +103,25 @@ class Thor
103
103
  !yes?(statement, color)
104
104
  end
105
105
 
106
+ # Prints values in columns
107
+ #
108
+ # ==== Parameters
109
+ # Array[String, String, ...]
110
+ #
111
+ def print_in_columns(array)
112
+ return if array.empty?
113
+ colwidth = (array.map{|el| el.to_s.size}.max || 0) + 2
114
+ array.each_with_index do |value, index|
115
+ # Don't output trailing spaces when printing the last column
116
+ if (((index + 1) % (terminal_width / colwidth))).zero? && !index.zero?
117
+ stdout.puts value
118
+ else
119
+ stdout.printf("%-#{colwidth}s", value)
120
+ end
121
+ end
122
+ stdout.puts
123
+ end
124
+
106
125
  # Prints a table.
107
126
  #
108
127
  # ==== Parameters
@@ -112,8 +131,8 @@ class Thor
112
131
  # indent<Integer>:: Indent the first column by indent value.
113
132
  # colwidth<Integer>:: Force the first column to colwidth spaces wide.
114
133
  #
115
- def print_table(table, options={})
116
- return if table.empty?
134
+ def print_table(array, options={})
135
+ return if array.empty?
117
136
 
118
137
  formats, indent, colwidth = [], options[:indent].to_i, options[:colwidth]
119
138
  options[:truncate] = terminal_width if options[:truncate] == true
@@ -121,14 +140,14 @@ class Thor
121
140
  formats << "%-#{colwidth + 2}s" if colwidth
122
141
  start = colwidth ? 1 : 0
123
142
 
124
- colcount = table.max{|a,b| a.size <=> b.size }.size
143
+ colcount = array.max{|a,b| a.size <=> b.size }.size
125
144
 
126
145
  maximas = []
127
146
 
128
- start.upto(colcount - 1) do |i|
129
- maxima = table.map {|row| row[i] ? row[i].to_s.size : 0 }.max
147
+ start.upto(colcount - 1) do |index|
148
+ maxima = array.map {|row| row[index] ? row[index].to_s.size : 0 }.max
130
149
  maximas << maxima
131
- if i == colcount -1
150
+ if index == colcount -1
132
151
  # Don't output 2 trailing spaces when printing the last column
133
152
  formats << "%-s"
134
153
  else
@@ -139,21 +158,21 @@ class Thor
139
158
  formats[0] = formats[0].insert(0, " " * indent)
140
159
  formats << "%s"
141
160
 
142
- table.each do |row|
161
+ array.each do |row|
143
162
  sentence = ""
144
163
 
145
- row.each_with_index do |column, i|
146
- maxima = maximas[i]
164
+ row.each_with_index do |column, index|
165
+ maxima = maximas[index]
147
166
 
148
167
  if column.is_a?(Numeric)
149
- if i == row.size - 1
168
+ if index == row.size - 1
150
169
  # Don't output 2 trailing spaces when printing the last column
151
170
  f = "%#{maxima}s"
152
171
  else
153
172
  f = "%#{maxima}s "
154
173
  end
155
174
  else
156
- f = formats[i]
175
+ f = formats[index]
157
176
  end
158
177
  sentence << f % column.to_s
159
178
  end
@@ -225,6 +244,19 @@ class Thor
225
244
  end
226
245
  end
227
246
 
247
+ # This code was copied from Rake, available under MIT-LICENSE
248
+ # Copyright (c) 2003, 2004 Jim Weirich
249
+ def terminal_width
250
+ if ENV['THOR_COLUMNS']
251
+ result = ENV['THOR_COLUMNS'].to_i
252
+ else
253
+ result = unix? ? dynamic_width : 80
254
+ end
255
+ (result < 10) ? 80 : result
256
+ rescue
257
+ 80
258
+ end
259
+
228
260
  # Called if something goes wrong during the execution. This is used by Thor
229
261
  # internally and should not be used inside your scripts. If something went
230
262
  # wrong, you can always raise an exception. If you raise a Thor::Error, it
@@ -241,36 +273,36 @@ class Thor
241
273
  string
242
274
  end
243
275
 
244
- protected
276
+ protected
245
277
 
246
- def lookup_color(color)
247
- return color unless color.is_a?(Symbol)
248
- self.class.const_get(color.to_s.upcase)
249
- end
278
+ def lookup_color(color)
279
+ return color unless color.is_a?(Symbol)
280
+ self.class.const_get(color.to_s.upcase)
281
+ end
250
282
 
251
- def stdout
252
- $stdout
253
- end
283
+ def stdout
284
+ $stdout
285
+ end
254
286
 
255
- def stdin
256
- $stdin
257
- end
287
+ def stdin
288
+ $stdin
289
+ end
258
290
 
259
- def stderr
260
- $stderr
261
- end
291
+ def stderr
292
+ $stderr
293
+ end
262
294
 
263
- def is?(value) #:nodoc:
264
- value = value.to_s
295
+ def is?(value) #:nodoc:
296
+ value = value.to_s
265
297
 
266
- if value.size == 1
267
- /\A#{value}\z/i
268
- else
269
- /\A(#{value}|#{value[0,1]})\z/i
270
- end
298
+ if value.size == 1
299
+ /\A#{value}\z/i
300
+ else
301
+ /\A(#{value}|#{value[0,1]})\z/i
271
302
  end
303
+ end
272
304
 
273
- def file_collision_help #:nodoc:
305
+ def file_collision_help #:nodoc:
274
306
  <<HELP
275
307
  Y - yes, overwrite
276
308
  n - no, do not overwrite
@@ -279,96 +311,79 @@ q - quit, abort
279
311
  d - diff, show the differences between the old and the new
280
312
  h - help, show this help
281
313
  HELP
282
- end
314
+ end
283
315
 
284
- def show_diff(destination, content) #:nodoc:
285
- diff_cmd = ENV['THOR_DIFF'] || ENV['RAILS_DIFF'] || 'diff -u'
316
+ def show_diff(destination, content) #:nodoc:
317
+ diff_cmd = ENV['THOR_DIFF'] || ENV['RAILS_DIFF'] || 'diff -u'
286
318
 
287
- Tempfile.open(File.basename(destination), File.dirname(destination)) do |temp|
288
- temp.write content
289
- temp.rewind
290
- system %(#{diff_cmd} "#{destination}" "#{temp.path}")
291
- end
292
- end
293
-
294
- def quiet? #:nodoc:
295
- mute? || (base && base.options[:quiet])
296
- end
297
-
298
- # This code was copied from Rake, available under MIT-LICENSE
299
- # Copyright (c) 2003, 2004 Jim Weirich
300
- def terminal_width
301
- if ENV['THOR_COLUMNS']
302
- result = ENV['THOR_COLUMNS'].to_i
303
- else
304
- result = unix? ? dynamic_width : 80
305
- end
306
- (result < 10) ? 80 : result
307
- rescue
308
- 80
319
+ Tempfile.open(File.basename(destination), File.dirname(destination)) do |temp|
320
+ temp.write content
321
+ temp.rewind
322
+ system %(#{diff_cmd} "#{destination}" "#{temp.path}")
309
323
  end
324
+ end
310
325
 
311
- # Calculate the dynamic width of the terminal
312
- def dynamic_width
313
- @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
314
- end
326
+ def quiet? #:nodoc:
327
+ mute? || (base && base.options[:quiet])
328
+ end
315
329
 
316
- def dynamic_width_stty
317
- %x{stty size 2>/dev/null}.split[1].to_i
318
- end
330
+ # Calculate the dynamic width of the terminal
331
+ def dynamic_width
332
+ @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
333
+ end
319
334
 
320
- def dynamic_width_tput
321
- %x{tput cols 2>/dev/null}.to_i
322
- end
335
+ def dynamic_width_stty
336
+ %x{stty size 2>/dev/null}.split[1].to_i
337
+ end
323
338
 
324
- def unix?
325
- RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
326
- end
339
+ def dynamic_width_tput
340
+ %x{tput cols 2>/dev/null}.to_i
341
+ end
327
342
 
328
- def truncate(string, width)
329
- as_unicode do
330
- chars = string.chars.to_a
343
+ def unix?
344
+ RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
345
+ end
331
346
 
332
- if chars.length <= width
333
- chars.join
334
- else
335
- ( chars[0, width-3].join ) + "..."
336
- end
347
+ def truncate(string, width)
348
+ as_unicode do
349
+ chars = string.chars.to_a
350
+ if chars.length <= width
351
+ chars.join
352
+ else
353
+ ( chars[0, width-3].join ) + "..."
337
354
  end
338
355
  end
356
+ end
339
357
 
340
- if "".respond_to?(:encode)
341
- def as_unicode
342
- yield
343
- end
344
- else
345
- def as_unicode
346
- old, $KCODE = $KCODE, "U"
347
- yield
348
- ensure
349
- $KCODE = old
350
- end
358
+ if "".respond_to?(:encode)
359
+ def as_unicode
360
+ yield
351
361
  end
352
-
353
- def ask_simply(statement, color = nil)
354
- say("#{statement} ", color)
355
- stdin.gets.strip
362
+ else
363
+ def as_unicode
364
+ old, $KCODE = $KCODE, "U"
365
+ yield
366
+ ensure
367
+ $KCODE = old
356
368
  end
369
+ end
357
370
 
358
- def ask_filtered(statement, answer_set, *args)
359
- correct_answer = nil
360
-
361
- until correct_answer
362
- answer = ask_simply("#{statement} #{answer_set.inspect}", *args)
363
-
364
- correct_answer = answer_set.include?(answer) ? answer : nil
365
-
366
- answers = answer_set.map(&:inspect).join(", ")
367
- say("Your response must be one of: [#{answers}]. Please try again.") unless correct_answer
368
- end
371
+ def ask_simply(statement, color=nil)
372
+ say("#{statement} ", color)
373
+ stdin.gets.strip
374
+ end
369
375
 
370
- correct_answer
376
+ def ask_filtered(statement, answer_set, *args)
377
+ correct_answer = nil
378
+ until correct_answer
379
+ answer = ask_simply("#{statement} #{answer_set.inspect}", *args)
380
+ correct_answer = answer_set.include?(answer) ? answer : nil
381
+ answers = answer_set.map(&:inspect).join(", ")
382
+ say("Your response must be one of: [#{answers}]. Please try again.") unless correct_answer
371
383
  end
384
+ correct_answer
385
+ end
386
+
372
387
  end
373
388
  end
374
389
  end
@@ -225,11 +225,11 @@ class Thor
225
225
  begin
226
226
  alternate_ruby = File.join(RbConfig::CONFIG['bindir'], 'ruby')
227
227
  alternate_ruby << RbConfig::CONFIG['EXEEXT']
228
-
228
+
229
229
  # ruby is a symlink
230
230
  if File.symlink? alternate_ruby
231
231
  linked_ruby = File.readlink alternate_ruby
232
-
232
+
233
233
  # symlink points to 'ruby_install_name'
234
234
  ruby = alternate_ruby if linked_ruby == ruby_name || linked_ruby == ruby
235
235
  end
@@ -1,3 +1,3 @@
1
1
  class Thor
2
- VERSION = "0.15.1"
2
+ VERSION = "0.15.2"
3
3
  end
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
2
  require 'thor/actions'
3
3
 
4
4
  describe Thor::Actions::CreateFile do
5
- before(:each) do
5
+ before do
6
6
  ::FileUtils.rm_rf(destination_root)
7
7
  end
8
8
 
@@ -63,7 +63,7 @@ describe Thor::Actions::CreateFile do
63
63
  end
64
64
 
65
65
  describe "when file exists" do
66
- before(:each) do
66
+ before do
67
67
  create_file("doc/config.rb")
68
68
  invoke!
69
69
  end
@@ -77,7 +77,7 @@ describe Thor::Actions::CreateFile do
77
77
  end
78
78
 
79
79
  describe "and is not identical" do
80
- before(:each) do
80
+ before do
81
81
  File.open(File.join(destination_root, 'doc/config.rb'), 'w'){ |f| f.write("FOO = 3") }
82
82
  end
83
83
 
@@ -3,7 +3,7 @@ require 'thor/actions'
3
3
  require 'tempfile'
4
4
 
5
5
  describe Thor::Actions::CreateLink do
6
- before(:each) do
6
+ before do
7
7
  @hardlink_to = File.join(Dir.tmpdir, 'linkdest.rb')
8
8
  ::FileUtils.rm_rf(destination_root)
9
9
  ::FileUtils.rm_rf(@hardlink_to)
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
2
  require 'thor/actions'
3
3
 
4
4
  describe Thor::Actions::Directory do
5
- before(:each) do
5
+ before do
6
6
  ::FileUtils.rm_rf(destination_root)
7
7
  invoker.stub!(:file_name).and_return("rdoc")
8
8
  end
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
2
  require 'thor/actions'
3
3
 
4
4
  describe Thor::Actions::EmptyDirectory do
5
- before(:each) do
5
+ before do
6
6
  ::FileUtils.rm_rf(destination_root)
7
7
  end
8
8
 
@@ -98,7 +98,7 @@ describe Thor::Actions::EmptyDirectory do
98
98
 
99
99
  context "protected methods" do
100
100
  describe "#convert_encoded_instructions" do
101
- before :each do
101
+ before do
102
102
  empty_directory("test_dir")
103
103
  @action.base.stub!(:file_name).and_return("expected")
104
104
  end
@@ -23,7 +23,7 @@ describe Thor::Actions do
23
23
  File.join(destination_root, "foo")
24
24
  end
25
25
 
26
- before(:each) do
26
+ before do
27
27
  ::FileUtils.rm_rf(destination_root)
28
28
  end
29
29
 
@@ -197,7 +197,7 @@ describe Thor::Actions do
197
197
  end
198
198
 
199
199
  describe "when changing existent files" do
200
- before(:each) do
200
+ before do
201
201
  ::FileUtils.cp_r(source_root, destination_root)
202
202
  end
203
203
 
@@ -316,7 +316,7 @@ describe Thor::Actions do
316
316
  end
317
317
 
318
318
  describe "when adjusting comments" do
319
- before(:each) do
319
+ before do
320
320
  ::FileUtils.cp_r(source_root, destination_root)
321
321
  end
322
322
 
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
2
  require 'thor/actions'
3
3
 
4
4
  describe Thor::Actions::InjectIntoFile do
5
- before(:each) do
5
+ before do
6
6
  ::FileUtils.rm_rf(destination_root)
7
7
  ::FileUtils.cp_r(source_root, destination_root)
8
8
  end
@@ -198,7 +198,7 @@ describe Thor::Actions do
198
198
  end
199
199
 
200
200
  describe "#apply" do
201
- before(:each) do
201
+ before do
202
202
  @template = <<-TEMPLATE
203
203
  @foo = "FOO"
204
204
  say_status :cool, :padding
@@ -248,7 +248,7 @@ describe Thor::Actions do
248
248
  end
249
249
 
250
250
  describe "#run" do
251
- before(:each) do
251
+ before do
252
252
  runner.should_receive(:system).with("ls")
253
253
  end
254
254
 
@@ -271,7 +271,7 @@ describe Thor::Actions do
271
271
  end
272
272
 
273
273
  describe "#run_ruby_script" do
274
- before(:each) do
274
+ before do
275
275
  Thor::Util.stub!(:ruby_command).and_return("/opt/jruby")
276
276
  runner.should_receive(:system).with("/opt/jruby script.rb")
277
277
  end
@@ -104,7 +104,7 @@ describe Thor::Base do
104
104
  end
105
105
 
106
106
  describe "#class_options_help" do
107
- before(:each) do
107
+ before do
108
108
  @content = capture(:stdout) { MyCounter.help(Thor::Base.shell.new) }
109
109
  end
110
110
 
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
2
  require 'thor/core_ext/hash_with_indifferent_access'
3
3
 
4
4
  describe Thor::CoreExt::HashWithIndifferentAccess do
5
- before(:each) do
5
+ before do
6
6
  @hash = Thor::CoreExt::HashWithIndifferentAccess.new :foo => 'bar', 'baz' => 'bee', :force => true
7
7
  end
8
8
 
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
2
  require 'thor/core_ext/ordered_hash'
3
3
 
4
4
  describe Thor::CoreExt::OrderedHash do
5
- before :each do
5
+ before do
6
6
  @hash = Thor::CoreExt::OrderedHash.new
7
7
  end
8
8
 
@@ -26,7 +26,7 @@ describe Thor::CoreExt::OrderedHash do
26
26
  end
27
27
 
28
28
  describe "with several items" do
29
- before :each do
29
+ before do
30
30
  @hash[:foo] = "Foo!"
31
31
  @hash[:bar] = "Bar!"
32
32
  @hash[:baz] = "Baz!"
@@ -56,7 +56,7 @@ describe Thor::Group do
56
56
  end
57
57
 
58
58
  describe "#help" do
59
- before(:each) do
59
+ before do
60
60
  @content = capture(:stdout){ MyCounter.help(Thor::Base.shell.new) }
61
61
  end
62
62
 
@@ -76,7 +76,7 @@ describe Thor::Group do
76
76
  end
77
77
 
78
78
  describe "#invoke" do
79
- before(:each) do
79
+ before do
80
80
  @content = capture(:stdout){ E.start }
81
81
  end
82
82
 
@@ -108,7 +108,7 @@ describe Thor::Group do
108
108
 
109
109
  describe "#invoke_from_option" do
110
110
  describe "with default type" do
111
- before(:each) do
111
+ before do
112
112
  @content = capture(:stdout){ G.start }
113
113
  end
114
114
 
@@ -147,7 +147,7 @@ describe Thor::Group do
147
147
  end
148
148
 
149
149
  describe "with boolean type" do
150
- before(:each) do
150
+ before do
151
151
  @content = capture(:stdout){ H.start }
152
152
  end
153
153
 
@@ -151,7 +151,7 @@ describe Thor::Options do
151
151
  end
152
152
 
153
153
  describe "with one required and one optional switch" do
154
- before :each do
154
+ before do
155
155
  create "--foo" => :required, "--bar" => :boolean
156
156
  end
157
157
 
@@ -174,7 +174,7 @@ describe Thor::Options do
174
174
  end
175
175
 
176
176
  describe "with :string type" do
177
- before(:each) do
177
+ before do
178
178
  create ["--foo", "-f"] => :required
179
179
  end
180
180
 
@@ -220,7 +220,7 @@ describe Thor::Options do
220
220
  end
221
221
 
222
222
  describe "with :boolean type" do
223
- before(:each) do
223
+ before do
224
224
  create "--foo" => false
225
225
  end
226
226
 
@@ -271,7 +271,7 @@ describe Thor::Options do
271
271
  end
272
272
 
273
273
  describe "with :hash type" do
274
- before(:each) do
274
+ before do
275
275
  create "--attributes" => :hash
276
276
  end
277
277
 
@@ -289,7 +289,7 @@ describe Thor::Options do
289
289
  end
290
290
 
291
291
  describe "with :array type" do
292
- before(:each) do
292
+ before do
293
293
  create "--attributes" => :array
294
294
  end
295
295
 
@@ -307,7 +307,7 @@ describe Thor::Options do
307
307
  end
308
308
 
309
309
  describe "with :numeric type" do
310
- before(:each) do
310
+ before do
311
311
  create "n" => :numeric, "m" => 5
312
312
  end
313
313
 
@@ -117,7 +117,7 @@ describe Thor::Runner do
117
117
  end
118
118
 
119
119
  describe "tasks" do
120
- before(:each) do
120
+ before do
121
121
  @location = "#{File.dirname(__FILE__)}/fixtures/task.thor"
122
122
  @original_yaml = {
123
123
  "random" => {
@@ -190,7 +190,7 @@ describe Thor::Runner do
190
190
  end
191
191
 
192
192
  describe "uninstall" do
193
- before(:each) do
193
+ before do
194
194
  path = File.join(Thor::Util.thor_root, @original_yaml["random"][:filename])
195
195
  FileUtils.should_receive(:rm_rf).with(path)
196
196
  end
@@ -201,7 +201,7 @@ describe Thor::Runner do
201
201
  end
202
202
 
203
203
  describe "installed" do
204
- before(:each) do
204
+ before do
205
205
  Dir.should_receive(:[]).and_return([])
206
206
  end
207
207
 
@@ -213,7 +213,7 @@ describe Thor::Runner do
213
213
  end
214
214
 
215
215
  describe "install/update" do
216
- before(:each) do
216
+ before do
217
217
  FileUtils.stub!(:mkdir_p)
218
218
  FileUtils.stub!(:touch)
219
219
  $stdin.stub!(:gets).and_return("Y")
@@ -120,8 +120,20 @@ describe Thor::Shell::Basic do
120
120
  end
121
121
  end
122
122
 
123
+ describe "#print_in_columns" do
124
+ before do
125
+ @array = [1234567890]
126
+ @array += ('a'..'e').to_a
127
+ end
128
+
129
+ it "prints in columns" do
130
+ content = capture(:stdout){ shell.print_in_columns(@array) }
131
+ content.rstrip.should == "1234567890 a b c d e"
132
+ end
133
+ end
134
+
123
135
  describe "#print_table" do
124
- before(:each) do
136
+ before do
125
137
  @table = []
126
138
  @table << ["abc", "#123", "first three"]
127
139
  @table << ["", "#0", "empty"]
@@ -29,7 +29,7 @@ load File.join(File.dirname(__FILE__), "fixtures", "script.thor")
29
29
  load File.join(File.dirname(__FILE__), "fixtures", "invoke.thor")
30
30
 
31
31
  RSpec.configure do |config|
32
- config.before :each do
32
+ config.before do
33
33
  ARGV.replace []
34
34
  end
35
35
 
@@ -247,7 +247,7 @@ describe Thor do
247
247
  end
248
248
 
249
249
  describe "on general" do
250
- before(:each) do
250
+ before do
251
251
  @content = capture(:stdout){ MyScript.help(shell) }
252
252
  end
253
253
 
@@ -119,7 +119,7 @@ describe Thor::Util do
119
119
  end
120
120
 
121
121
  describe "#user_home" do
122
- before(:each) do
122
+ before do
123
123
  ENV.stub!(:[])
124
124
  Thor::Util.clear_user_home!
125
125
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.1
4
+ version: 0.15.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-05-06 00:00:00.000000000 Z
13
+ date: 2012-05-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler