gem-eit 0.5.1 → 0.6.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 524f7c37f2f957e42e335ca2bf252e544e573872
4
- data.tar.gz: e12c2842a8e16b364c28263ab7ec590e013a39cf
3
+ metadata.gz: 3f0e019eb8ffa7c3ca1388a96159d503540644e8
4
+ data.tar.gz: 5c2be82d98f215c33fbf81a9bd1fc95b0411cbe0
5
5
  SHA512:
6
- metadata.gz: 5bcf764d3df469a2b1aa518d5f396ce32a80944b7a6c820c3e023a4a0f066ad067ed4e491e8942ff8d907467d6e8a00f7896b3a7cb0ff6602f2657e8874dc86d
7
- data.tar.gz: 8013ce3e9a05a661a4e781e381f31986896eed7b0fc2451cf2ee58dee8e15e87fdb052766992618ee7ca663a7505e458944dd71e8e899b0ca19fc4d363bdc216
6
+ metadata.gz: 217ff7c530c21e69df0869c9cf966e0c9b2356cfa229e461fce6e365f8506a6dcb8f4d8dea9e6dd68f4595b86ececc02b25f2fc28767177bdd6c74ac682a44e1
7
+ data.tar.gz: 6ea8cd7f68eb1214c155c82ac5f55067588cfecd9fc191cbbdca2ceabc0c6c4276a114cda698b66057ade721fc902441d000606ce29d20fce12ea4d8ee097c1f
data/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGES
2
2
 
3
+ ## gem-eit 0.6.0 -- 2013-22-27
4
+
5
+ * Prefer `$GEM_EDITOR` over `$EIT_EDITOR`
6
+
3
7
  ## gem-eit 0.5.1 -- 2013-11-22
4
8
 
5
9
  * Fixed a bug where we're using `eit` command instead of $EDITOR.
data/README.md CHANGED
@@ -25,6 +25,7 @@ Because [gem-edit][] was already taken.
25
25
 
26
26
  * Tested with MRI (official CRuby) 1.9.3, 2.0.0, Rubinius and JRuby.
27
27
  * [gem-path](https://github.com/godfat/gem-path)
28
+ * `vim` from shell, or set `$GEM_EDITOR` or `$EDITOR` to the editor you want.
28
29
 
29
30
  ## INSTALLATION:
30
31
 
@@ -32,7 +33,8 @@ Because [gem-edit][] was already taken.
32
33
 
33
34
  ## SYNOPSIS:
34
35
 
35
- Please set either `$EIT_EDITOR` or `$EDITOR`.
36
+ Please set either `$GEM_EDITOR` or `$EDITOR` to the editor you want.
37
+ By default it would pick `vim` if nothing is set.
36
38
 
37
39
  ### Edit gem
38
40
 
data/Rakefile CHANGED
@@ -8,6 +8,6 @@ end
8
8
 
9
9
  Gemgem.init(dir) do |s|
10
10
  s.name = 'gem-eit'
11
- s.version = '0.5.1'
11
+ s.version = '0.6.0'
12
12
  s.add_runtime_dependency('gem-path')
13
13
  end
@@ -1,13 +1,13 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: gem-eit 0.5.1 ruby lib
2
+ # stub: gem-eit 0.6.0 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "gem-eit"
6
- s.version = "0.5.1"
6
+ s.version = "0.6.0"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
9
  s.authors = ["Lin Jen-Shin (godfat)"]
10
- s.date = "2013-11-22"
10
+ s.date = "2013-11-27"
11
11
  s.description = "Edit the gem for a given name or edit the file for a given require path.\n\nAlso checkout [gem-grep][].\n\n[gem-grep]: https://github.com/godfat/gem-grep"
12
12
  s.email = ["godfat (XD) godfat.org"]
13
13
  s.files = [
@@ -30,6 +30,6 @@ class Gem::Commands::EitCommand < Gem::Command
30
30
  end
31
31
 
32
32
  def eit
33
- ENV['EIT_EDITOR'] || ENV['EDITOR'] || 'vim'
33
+ ENV['GEM_EDITOR'] || ENV['EDITOR'] || 'vim'
34
34
  end
35
35
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-eit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lin Jen-Shin (godfat)
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-22 00:00:00.000000000 Z
11
+ date: 2013-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem-path
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  description: |-
@@ -36,9 +36,9 @@ executables: []
36
36
  extensions: []
37
37
  extra_rdoc_files: []
38
38
  files:
39
- - .gitignore
40
- - .gitmodules
41
- - .travis.yml
39
+ - ".gitignore"
40
+ - ".gitmodules"
41
+ - ".travis.yml"
42
42
  - CHANGES.md
43
43
  - LICENSE
44
44
  - README.md
@@ -58,12 +58,12 @@ require_paths:
58
58
  - lib
59
59
  required_ruby_version: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - '>='
61
+ - - ">="
62
62
  - !ruby/object:Gem::Version
63
63
  version: '0'
64
64
  required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  requirements: []