interactive_editor 0.0.10 → 0.0.11
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 +7 -0
- data/interactive_editor.gemspec +2 -2
- data/lib/interactive_editor.rb +3 -1
- metadata +34 -51
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: d9b0f920ce2eca5074dff22795fc5e68a97fd86d
|
|
4
|
+
data.tar.gz: 4fce499a0bdafa6a1271d5c931931e7cf27e8ced
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 93807a6a93008a6487d7b2e974870b51fdeeda597e770c45df5ad336b081428d21ad8578f19740242ed377a2de1c81ceb4ad7b3067592808fba9dac5c953482e
|
|
7
|
+
data.tar.gz: 1633d2c915160ad522f933fb9d69f5bd3e1770a1f7edd48d0260f3e2207dfd046139fd1ae4d44d6c2827c02841b95cf3651f96289db70acc2f174b4c27bb25e8
|
data/interactive_editor.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
8
8
|
## the sub! line in the Rakefile
|
|
9
9
|
s.name = 'interactive_editor'
|
|
10
|
-
s.version = '0.0.
|
|
11
|
-
s.date = '
|
|
10
|
+
s.version = '0.0.11'
|
|
11
|
+
s.date = '2017-10-22'
|
|
12
12
|
s.rubyforge_project = 'interactive_editor'
|
|
13
13
|
|
|
14
14
|
## Make sure your summary is short. The description may be as long
|
data/lib/interactive_editor.rb
CHANGED
|
@@ -9,7 +9,7 @@ require 'shellwords'
|
|
|
9
9
|
require 'yaml'
|
|
10
10
|
|
|
11
11
|
class InteractiveEditor
|
|
12
|
-
VERSION = '0.0.
|
|
12
|
+
VERSION = '0.0.11'
|
|
13
13
|
EDITORS = Hash.new { |h,k| h[k] = InteractiveEditor.new(k) }
|
|
14
14
|
|
|
15
15
|
attr_accessor :editor
|
|
@@ -91,9 +91,11 @@ class InteractiveEditor
|
|
|
91
91
|
{
|
|
92
92
|
:vi => nil,
|
|
93
93
|
:vim => nil,
|
|
94
|
+
:nvim => nil,
|
|
94
95
|
:emacs => nil,
|
|
95
96
|
:nano => nil,
|
|
96
97
|
:mate => 'mate -w',
|
|
98
|
+
:subl => 'subl -wn',
|
|
97
99
|
:mvim => 'mvim -g -f' + case ENV['TERM_PROGRAM']
|
|
98
100
|
when 'iTerm.app'; ' -c "au VimLeave * !open -a iTerm"'
|
|
99
101
|
when 'Apple_Terminal'; ' -c "au VimLeave * !open -a Terminal"'
|
metadata
CHANGED
|
@@ -1,83 +1,66 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: interactive_editor
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
segments:
|
|
6
|
-
- 0
|
|
7
|
-
- 0
|
|
8
|
-
- 10
|
|
9
|
-
version: 0.0.10
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.11
|
|
10
5
|
platform: ruby
|
|
11
|
-
authors:
|
|
6
|
+
authors:
|
|
12
7
|
- Jan Berkel
|
|
13
8
|
autorequire:
|
|
14
9
|
bindir: bin
|
|
15
10
|
cert_chain: []
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
dependencies:
|
|
20
|
-
- !ruby/object:Gem::Dependency
|
|
11
|
+
date: 2017-10-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
21
14
|
name: spoon
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
none: false
|
|
25
|
-
requirements:
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
26
17
|
- - ">="
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
segments:
|
|
29
|
-
- 0
|
|
30
|
-
- 0
|
|
31
|
-
- 1
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
32
19
|
version: 0.0.1
|
|
33
20
|
type: :runtime
|
|
34
|
-
|
|
35
|
-
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.0.1
|
|
27
|
+
description: Use vim (or any other text editor) from inside irb to quickly test &
|
|
28
|
+
write new code.
|
|
36
29
|
email: jan.berkel@gmail.com
|
|
37
30
|
executables: []
|
|
38
|
-
|
|
39
31
|
extensions: []
|
|
40
|
-
|
|
41
|
-
extra_rdoc_files:
|
|
32
|
+
extra_rdoc_files:
|
|
42
33
|
- README.md
|
|
43
34
|
- LICENSE
|
|
44
|
-
files:
|
|
35
|
+
files:
|
|
45
36
|
- LICENSE
|
|
46
37
|
- README.md
|
|
47
38
|
- Rakefile
|
|
48
39
|
- interactive_editor.gemspec
|
|
49
40
|
- lib/interactive_editor.rb
|
|
50
|
-
has_rdoc: true
|
|
51
41
|
homepage: http://github.com/jberkel/interactive_editor
|
|
52
|
-
licenses:
|
|
42
|
+
licenses:
|
|
53
43
|
- MIT
|
|
44
|
+
metadata: {}
|
|
54
45
|
post_install_message:
|
|
55
|
-
rdoc_options:
|
|
56
|
-
- --charset=UTF-8
|
|
57
|
-
require_paths:
|
|
46
|
+
rdoc_options:
|
|
47
|
+
- "--charset=UTF-8"
|
|
48
|
+
require_paths:
|
|
58
49
|
- lib
|
|
59
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
60
|
-
|
|
61
|
-
requirements:
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
62
52
|
- - ">="
|
|
63
|
-
- !ruby/object:Gem::Version
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
-
none: false
|
|
69
|
-
requirements:
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
70
57
|
- - ">="
|
|
71
|
-
- !ruby/object:Gem::Version
|
|
72
|
-
|
|
73
|
-
- 0
|
|
74
|
-
version: "0"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
75
60
|
requirements: []
|
|
76
|
-
|
|
77
61
|
rubyforge_project: interactive_editor
|
|
78
|
-
rubygems_version:
|
|
62
|
+
rubygems_version: 2.5.1
|
|
79
63
|
signing_key:
|
|
80
64
|
specification_version: 2
|
|
81
65
|
summary: Interactive editing in irb.
|
|
82
66
|
test_files: []
|
|
83
|
-
|