editorkicker 0.1.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.
- data/CHANGES.txt +6 -0
- data/MIT-LICENSE +20 -0
- data/README.txt +133 -0
- data/editorkicker.gemspec +46 -0
- data/lib/editor_kicker.rb +104 -0
- data/plugin/rails/editorkicker/CHANGES.txt +6 -0
- data/plugin/rails/editorkicker/MIT-LICENSE +20 -0
- data/plugin/rails/editorkicker/README.txt +67 -0
- data/plugin/rails/editorkicker/init.rb +64 -0
- data/plugin/rails/editorkicker/lib/editor_kicker.rb +104 -0
- data/setup.rb +1585 -0
- metadata +66 -0
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: editorkicker
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- makoto kuwata
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-07-20 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: EditorKicker is a pretty tool to invoke your favorite editor and open errored file automatically when error raised in your script.
|
17
|
+
email: kwa(at)kuwata-lab.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- lib/editor_kicker.rb
|
26
|
+
- README.txt
|
27
|
+
- CHANGES.txt
|
28
|
+
- MIT-LICENSE
|
29
|
+
- setup.rb
|
30
|
+
- editorkicker.gemspec
|
31
|
+
- plugin/rails
|
32
|
+
- plugin/rails/editorkicker
|
33
|
+
- plugin/rails/editorkicker/CHANGES.txt
|
34
|
+
- plugin/rails/editorkicker/init.rb
|
35
|
+
- plugin/rails/editorkicker/lib
|
36
|
+
- plugin/rails/editorkicker/lib/editor_kicker.rb
|
37
|
+
- plugin/rails/editorkicker/MIT-LICENSE
|
38
|
+
- plugin/rails/editorkicker/README.txt
|
39
|
+
has_rdoc: false
|
40
|
+
homepage: http://editorkicker.rubyforge.org/
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: "0"
|
51
|
+
version:
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
version:
|
58
|
+
requirements: []
|
59
|
+
|
60
|
+
rubyforge_project: editorkicker
|
61
|
+
rubygems_version: 1.2.0
|
62
|
+
signing_key:
|
63
|
+
specification_version: 2
|
64
|
+
summary: a pretty tool to invoke your favorite editor when error raised
|
65
|
+
test_files: []
|
66
|
+
|