irbtab 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +7 -5
  2. data/irbtab.gemspec +2 -2
  3. data/lib/irbtab.rb +1 -1
  4. metadata +4 -4
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ###DESCRIPTION
2
- irbtab allows you to copy and paste between ruby arrays in irb/rails console and a spreadsheet (tab delimited) and visa versa.
2
+ copy and paste between ruby arrays in irb/rails console and a spreadsheet (tab delimited) and vise versa.
3
3
 
4
4
  it works on osx, linux and possibly windows.
5
5
 
@@ -21,7 +21,7 @@ require 'irbtab'
21
21
  ```
22
22
 
23
23
 
24
- * now in irb you could do
24
+ * now in irb you can do
25
25
 
26
26
  ```
27
27
  irbt [['a', 'two dimentional'],['array', 'for your spreadsheet']]
@@ -29,18 +29,20 @@ irbt [['a', 'two dimentional'],['array', 'for your spreadsheet']]
29
29
 
30
30
  and the array is in your clipboard ready to paste into a spreadsheet.
31
31
 
32
- * if you've copied something from a spreadsheet you can simply do
32
+
33
+
34
+ * if you've copied something from a spreadsheet, in irb you can simply do
33
35
 
34
36
  ```
35
37
  irbt
36
38
  ```
37
39
 
38
- to paste it into an ruby array in irb
40
+ to paste it into a ruby array
39
41
 
40
42
  ###NOTES
41
43
  - you can use the commands 'copy' and 'paste' if you love carpal tunnel
42
44
 
43
- - windows past support is via
45
+ - windows paste support is via
44
46
 
45
47
  http://www.c3scripts.com/tutorials/msdos/paste.html#exe
46
48
 
data/irbtab.gemspec CHANGED
@@ -2,10 +2,10 @@
2
2
 
3
3
  Gem::Specification::new do |spec|
4
4
  spec.name = "irbtab"
5
- spec.version = "0.0.7"
5
+ spec.version = "0.0.8"
6
6
  spec.platform = Gem::Platform::RUBY
7
7
  spec.summary = "copy and paste between spreadsheet and ruby arrays in irb"
8
- spec.description = "irbtab allows you to copy and paste between ruby arrays in irb/rails console and a spreadsheet (tab delimited) and visa versa. Based on irbcp by Ara T. Howard"
8
+ spec.description = "copy and paste between ruby arrays in irb/rails console and a spreadsheet (tab delimited) and vise versa. Based on irbcp by Ara T. Howard"
9
9
 
10
10
  spec.files =["README.md", "Rakefile", "irbtab.gemspec", "lib", "lib/irbtab.rb"]
11
11
 
data/lib/irbtab.rb CHANGED
@@ -9,7 +9,7 @@ end
9
9
 
10
10
 
11
11
  module Irbtab
12
- Version = '0.0.7'
12
+ Version = '0.0.8'
13
13
 
14
14
  def Irbtab.version() Irbtab::Version end
15
15
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbtab
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 7
10
- version: 0.0.7
9
+ - 8
10
+ version: 0.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mark Suppes
@@ -46,7 +46,7 @@ dependencies:
46
46
  version: "0"
47
47
  type: :runtime
48
48
  version_requirements: *id002
49
- description: irbtab allows you to copy and paste between ruby arrays in irb/rails console and a spreadsheet (tab delimited) and visa versa. Based on irbcp by Ara T. Howard
49
+ description: copy and paste between ruby arrays in irb/rails console and a spreadsheet (tab delimited) and vise versa. Based on irbcp by Ara T. Howard
50
50
  email: famulus.fusion@gmail.com
51
51
  executables: []
52
52