interactive_editor 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/Rakefile +1 -2
- data/interactive_editor.gemspec +2 -2
- data/lib/interactive_editor.rb +2 -2
- metadata +3 -3
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
# Interactive editor
|
3
3
|
|
4
|
-
cf. my blog post: [Integrating vim and irb](http://zegoggl.es/2009/04/integrating-vim-and-irb.html).
|
4
|
+
cf. my (slightly outdated) blog post: [Integrating vim and irb](http://zegoggl.es/2009/04/integrating-vim-and-irb.html) and [vimcasts #20: Running Vim within IRB](http://vimcasts.org/e/20).
|
5
5
|
|
6
6
|
## Usage
|
7
7
|
|
data/Rakefile
CHANGED
@@ -65,8 +65,7 @@ task :release => :build do
|
|
65
65
|
end
|
66
66
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
67
67
|
sh "git tag v#{version}"
|
68
|
-
sh "git push origin master"
|
69
|
-
sh "git push v#{version}"
|
68
|
+
sh "git push origin master --tags"
|
70
69
|
sh "gem push pkg/#{name}-#{version}.gem"
|
71
70
|
end
|
72
71
|
|
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 = '2010-05-
|
10
|
+
s.version = '0.0.3'
|
11
|
+
s.date = '2010-05-17'
|
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
@@ -7,7 +7,7 @@ require 'fileutils'
|
|
7
7
|
require 'tempfile'
|
8
8
|
|
9
9
|
class InteractiveEditor
|
10
|
-
VERSION = '0.0.
|
10
|
+
VERSION = '0.0.3'
|
11
11
|
|
12
12
|
attr_accessor :editor
|
13
13
|
|
@@ -55,7 +55,7 @@ class InteractiveEditor
|
|
55
55
|
|
56
56
|
module MRI
|
57
57
|
def system(file, *args)
|
58
|
-
Kernel::system(file, *args) or raise "error exec'ing #{file}: #{$?}"
|
58
|
+
Kernel::system(file, *args) #or raise "error exec'ing #{file}: #{$?}"
|
59
59
|
end
|
60
60
|
end
|
61
61
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jan Berkel
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-05-
|
17
|
+
date: 2010-05-17 00:00:00 +01:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|