remote_table 0.2.24 → 0.2.26

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.24
1
+ 0.2.26
@@ -80,12 +80,12 @@ class RemoteTable
80
80
 
81
81
  def cut_columns!
82
82
  return unless cut
83
- RemoteTable.bang path, "cut -c #{Escape.shell_single_word cut}"
83
+ RemoteTable.bang path, "cut -c #{Escape.shell_single_word cut.to_s}"
84
84
  end
85
85
 
86
86
  def crop_rows!
87
87
  return unless crop
88
- RemoteTable.bang path "tail -n +#{Escape.shell_single_word crop.first} | head -n #{crop.last - crop.first + 1}"
88
+ RemoteTable.bang path, "tail -n +#{Escape.shell_single_word crop.first.to_s} | head -n #{crop.last - crop.first + 1}"
89
89
  end
90
90
 
91
91
  def format_from_filename
data/remote_table.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{remote_table}
8
- s.version = "0.2.24"
8
+ s.version = "0.2.26"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Seamus Abshere", "Andy Rossmeissl"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 24
9
- version: 0.2.24
8
+ - 26
9
+ version: 0.2.26
10
10
  platform: ruby
11
11
  authors:
12
12
  - Seamus Abshere