edit 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/README.rdoc +6 -0
  2. data/VERSION +1 -1
  3. data/edit.gemspec +69 -0
  4. metadata +2 -1
@@ -10,6 +10,12 @@ Open a file in your edit with line number. It provides the command 'edit'.
10
10
 
11
11
  $ edit /path/to/foo.rb:10
12
12
 
13
+ == Supported Editors
14
+
15
+ Please see here: https://github.com/jugyo/edit/tree/master/lib/edit
16
+
17
+ And please patches to support more editors!
18
+
13
19
  == Copyright
14
20
 
15
21
  Copyright (c) 2011 jugyo. See LICENSE.txt for further details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,69 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{edit}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["jugyo"]
12
+ s.date = %q{2011-02-22}
13
+ s.default_executable = %q{edit}
14
+ s.description = %q{Open a file in your edit with line number. It provides the command 'edit'.}
15
+ s.email = %q{jugyo.org@gmail.com}
16
+ s.executables = ["edit"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE.txt",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".rspec",
24
+ "Gemfile",
25
+ "Gemfile.lock",
26
+ "LICENSE.txt",
27
+ "README.rdoc",
28
+ "Rakefile",
29
+ "VERSION",
30
+ "bin/edit",
31
+ "edit.gemspec",
32
+ "lib/edit.rb",
33
+ "lib/edit/mate.rb",
34
+ "lib/edit/vim.rb",
35
+ "spec/edit_spec.rb",
36
+ "spec/spec_helper.rb"
37
+ ]
38
+ s.homepage = %q{http://github.com/jugyo/edit}
39
+ s.licenses = ["MIT"]
40
+ s.require_paths = ["lib"]
41
+ s.rubygems_version = %q{1.5.0}
42
+ s.summary = %q{Open a file in your edit with line number}
43
+ s.test_files = [
44
+ "spec/edit_spec.rb",
45
+ "spec/spec_helper.rb"
46
+ ]
47
+
48
+ if s.respond_to? :specification_version then
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
52
+ s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
53
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
54
+ s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
55
+ s.add_development_dependency(%q<rcov>, [">= 0"])
56
+ else
57
+ s.add_dependency(%q<rspec>, ["~> 2.3.0"])
58
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
59
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
60
+ s.add_dependency(%q<rcov>, [">= 0"])
61
+ end
62
+ else
63
+ s.add_dependency(%q<rspec>, ["~> 2.3.0"])
64
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
65
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
66
+ s.add_dependency(%q<rcov>, [">= 0"])
67
+ end
68
+ end
69
+
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: edit
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - jugyo
@@ -76,6 +76,7 @@ files:
76
76
  - Rakefile
77
77
  - VERSION
78
78
  - bin/edit
79
+ - edit.gemspec
79
80
  - lib/edit.rb
80
81
  - lib/edit/mate.rb
81
82
  - lib/edit/vim.rb