my_help 0.2.3 → 0.3.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: 9e2f60b5bfeb690fb60b2182ed234acb124b8444
4
- data.tar.gz: a02e2a5b817c8eee662b35344f761d55c898c447
3
+ metadata.gz: 1c85de893d1ac9d563a5de5fcd1ec127843e5a9c
4
+ data.tar.gz: 2e852f2c0f9db2f5dc8e39c53a18a4abad832281
5
5
  SHA512:
6
- metadata.gz: 4efe59537649255313f6c4a9e470915c9c2b89ac464a52ca6fe13f8440ddc08f035f7f89ea3ae6ddd27ba8fe38769f399679bf67b34098b1ce1077534f32a6d6
7
- data.tar.gz: d0b5cfc652c07cf6edd490ea25be41c98547916eacf4b3abd4002cefc7ed57c1c92fc706f6a99d0a108adcb2143d08f85e6e41bbed0b2394a4184c7bec08618d
6
+ metadata.gz: fcf3d32664f69135c8c59cdf360964e8cea96e6c0a74c02144a4e2a077a4c8d009a61779b4380266d92d6301f990702f764f8977dd89fa1418c7ae536ea3cae2
7
+ data.tar.gz: b606ba8b83ba316b9011ca3d25a907096f166381c006f4cd5e9ab5dce40d10c5a175abdda76c228dbcb283975ad6a039a56a577c89ae34a8e1d461900e363a19
data/README.md CHANGED
@@ -42,6 +42,7 @@ git clone git@github.com:daddygongon/my_help.git
42
42
  これは,最後のrake install:localをコマンドから実行する方法がわからんかったからですが...
43
43
  - helpファイルのpush共有とかも考えるとこれがいいのかも.
44
44
  - home以下に置く方法と比較分析してください.
45
+ - lib/daddygongonにあたらしいhelpを置くようにしていましたが,helpに個人情報を入れるとgit pushでさらしてしまうので,やめました.
45
46
 
46
47
  用意されているコマンドは,
47
48
 
@@ -94,10 +95,11 @@ cp /usr/local/lib/ruby/gems/2.2.0/gems/my_help-0.2.1/lib/my_help/template_help
94
95
  もし使えないときは,bin pathが通ってないので,terminalをnewしてください.
95
96
 
96
97
  # userの独自helpの達成方法
97
- (rake my_helpでやっていたが,今は,my_help -mに移行)
98
+ - rake my_helpでやっていたが,今は,my_help -mに移行
99
+ - @target dirをmy_help/lib/daddygongonからENV['HOME']/.my_helpに変更
98
100
 
99
101
  exe中のファイルをrakeで自動生成.
100
- ./lib/daddygongon/にそれらのdataを保存.以下ではその名前から
102
+ @target_dirにそれらのdataを保存.以下ではその名前から
101
103
  exe中に実行ファイルを自動生成させている.
102
104
  ```
103
105
  lib/daddygongon/
@@ -109,26 +111,22 @@ exe
109
111
  ```
110
112
  ということ.これは,
111
113
  ```
112
- rake my_help
114
+ my_help -m
113
115
  ```
114
116
  で実行される.これを
115
117
  ```
116
118
  rake install:local
117
119
  ```
118
- すれば必要とするhelpがlocalな環境で表示される.
120
+ すれば必要とするhelpがlocalな環境でbin dirに移され,CUI commandとして実行可能になる.
119
121
 
120
- たくさんの実行ファイルを/usr/loca/binに置くことになるので,
122
+ たくさんの実行ファイルを/usr/loca/binに置くことになるので,あらたなmy_helpを作成するときには
121
123
  ```
122
124
  gem uninstall my_help
123
125
  gem uninstall emacs_help
124
126
  ```
125
- でそこをcleanにしておくことが望ましい.
126
-
127
- Rakefileの中身は以下の通り.
128
- ```
129
- in Rakefile
130
- ```
127
+ でそのdirをcleanにしておくことが望ましい.
131
128
 
129
+ 中身は以下の通り.
132
130
  ```ruby
133
131
  desc "make own help from lib/daddygongon/files"
134
132
  task :my_help do
data/Rakefile CHANGED
@@ -47,42 +47,3 @@ task :latex do
47
47
  end
48
48
 
49
49
 
50
- desc "make own help from lib/daddygongon/files"
51
- task :my_help do
52
- user_name = 'daddygongon'
53
- p entries=Dir.entries(File.join('.','lib',user_name))[2..-1]
54
- entries.each{|file|
55
- p file
56
- next if file[0]=='#' or file[-1]=='~'
57
- exe_cont="#!/usr/bin/env ruby\n"
58
- p file_name=file.split('_')
59
- target_files = [file, file_name[0][0]+"_"+file_name[1][0]]
60
- p cont_name = File.join('lib',user_name,file)
61
- exe_cont << "require 'specific_help'\n"
62
- exe_cont << "help_file = File.expand_path(\"../../#{cont_name}\", __FILE__)\n"
63
- exe_cont << "SpecificHelp::Command.run(help_file, ARGV)\n"
64
- target_files.each{|name|
65
- print "\n"
66
- p target=File.join('exe',name)
67
- File.open(target,'w'){|file|
68
- print exe_cont
69
- file.print exe_cont
70
- }
71
- FileUtils.chmod('a+x', target, :verbose => true)
72
- }
73
- }
74
- end
75
-
76
- desc "make hiki documents"
77
- task :mk_hiki do
78
- p entries=Dir.entries(File.join('.','hikis'))[2..-1]
79
- hiki_dir='/Users/bob/Sites/nishitani0/Internal/data/text'
80
- entries.each{|file|
81
- next if file[0]=='#' or file[-1]=='~'
82
- p src=File.join('.','hikis',file)
83
- p file_name='MyHelp_'+File.basename(file,'.hiki')
84
- p des=File.join(hiki_dir,file_name)
85
- FileUtils::Verbose.cp(src,des)
86
- FileUtils::Verbose.chmod('a+w',des)
87
- }
88
- end
data/exe/e_h CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'specific_help'
3
- target_dir = File.expand_path("../../lib/daddygongon", __FILE__)
3
+ target_dir = File.join(ENV['HOME'],'.my_help')
4
4
  help_file = File.join(target_dir,'emacs_help')
5
5
  SpecificHelp::Command.run(help_file, ARGV)
data/exe/emacs_help CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'specific_help'
3
- target_dir = File.expand_path("../../lib/daddygongon", __FILE__)
3
+ target_dir = File.join(ENV['HOME'],'.my_help')
4
4
  help_file = File.join(target_dir,'emacs_help')
5
5
  SpecificHelp::Command.run(help_file, ARGV)
data/exe/m_h ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ require 'specific_help'
3
+ target_dir = File.join(ENV['HOME'],'.my_help')
4
+ help_file = File.join(target_dir,'member_help')
5
+ SpecificHelp::Command.run(help_file, ARGV)
data/exe/member_help ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ require 'specific_help'
3
+ target_dir = File.join(ENV['HOME'],'.my_help')
4
+ help_file = File.join(target_dir,'member_help')
5
+ SpecificHelp::Command.run(help_file, ARGV)
data/exe/t_h CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'specific_help'
3
- target_dir = File.expand_path("../../lib/daddygongon", __FILE__)
3
+ target_dir = File.join(ENV['HOME'],'.my_help')
4
4
  help_file = File.join(target_dir,'test_help')
5
5
  SpecificHelp::Command.run(help_file, ARGV)
data/exe/test_help CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'specific_help'
3
- target_dir = File.expand_path("../../lib/daddygongon", __FILE__)
3
+ target_dir = File.join(ENV['HOME'],'.my_help')
4
4
  help_file = File.join(target_dir,'test_help')
5
5
  SpecificHelp::Command.run(help_file, ARGV)
data/hikis/README_ja.hiki CHANGED
@@ -40,6 +40,7 @@ key(記憶のとっかかり)を提供することが目的です.
40
40
  これは,最後のrake install:localをコマンドから実行する方法がわからんかったからですが...
41
41
  * helpファイルのpush共有とかも考えるとこれがいいのかも.
42
42
  * home以下に置く方法と比較分析してください.
43
+ ** lib/daddygongonにあたらしいhelpを置くようにしていましたが,helpに個人情報を入れるとgit pushでさらしてしまうので,やめました.
43
44
 
44
45
  用意されているコマンドは,
45
46
 
@@ -92,10 +93,11 @@ cp /usr/local/lib/ruby/gems/2.2.0/gems/my_help-0.2.1/lib/my_help/template_help
92
93
  もし使えないときは,bin pathが通ってないので,terminalをnewしてください.
93
94
 
94
95
  !userの独自helpの達成方法
95
- (rake my_helpでやっていたが,今は,my_help -mに移行)
96
+ * rake my_helpでやっていたが,今は,my_help -mに移行
97
+ * @target dirをmy_help/lib/daddygongonからENV['HOME']/.my_helpに変更
96
98
 
97
99
  exe中のファイルをrakeで自動生成.
98
- ./lib/daddygongon/にそれらのdataを保存.以下ではその名前から
100
+ @target_dirにそれらのdataを保存.以下ではその名前から
99
101
  exe中に実行ファイルを自動生成させている.
100
102
  <<<
101
103
  lib/daddygongon/
@@ -106,19 +108,17 @@ exe
106
108
  └── emacs_help
107
109
  >>>
108
110
  ということ.これは,
109
- rake my_help
111
+ my_help -m
110
112
  で実行される.これを
111
113
  rake install:local
112
- すれば必要とするhelpがlocalな環境で表示される.
114
+ すれば必要とするhelpがlocalな環境でbin dirに移され,CUI commandとして実行可能になる.
113
115
 
114
- たくさんの実行ファイルを/usr/loca/binに置くことになるので,
116
+ たくさんの実行ファイルを/usr/loca/binに置くことになるので,あらたなmy_helpを作成するときには
115
117
  gem uninstall my_help
116
118
  gem uninstall emacs_help
117
- でそこをcleanにしておくことが望ましい.
118
-
119
- Rakefileの中身は以下の通り.
120
- in Rakefile
119
+ でそのdirをcleanにしておくことが望ましい.
121
120
 
121
+ 中身は以下の通り.
122
122
  <<< ruby
123
123
  desc "make own help from lib/daddygongon/files"
124
124
  task :my_help do
@@ -195,3 +195,4 @@ Usage: eh [options]
195
195
  >>>
196
196
  としたほうがいいと提案する.アンケートを実施してみてほしい.
197
197
 
198
+
@@ -1,24 +1,39 @@
1
1
  ---
2
2
  :head:
3
- - "TODO: ヘルプ内容の概略.\n"
4
- - " 常に表示される内容を記述.\n"
5
- - " 下を参照して変更してください.\n"
6
- :item:
3
+ - "人の名前を覚えるためのメモ\n"
4
+ :senior:
7
5
  :opts:
8
- :short: "-i"
9
- :long: "--item"
10
- :desc: 単元(item)
11
- :title: "\n単元\n"
6
+ :short: "-4"
7
+ :long: "--senior"
8
+ :desc: 4回生
9
+ :title: "\n4回生\n"
12
10
  :cont:
13
- - c-f, move Forwrard, 前or右へ
14
- - フォーマットは自由です. ','があるときは2文字下げ,ないときは4文字下げ
15
- :item2:
11
+ - eringi, sakigits, narita, yamamoto, murakami, nasu, koki, yamane
12
+ :junior:
16
13
  :opts:
17
14
  :short: "-j"
18
- :long: "--item2"
19
- :desc: 単元2(item2)
20
- :title: "\n単元2\n"
15
+ :long: "--junior"
16
+ :desc: 3回生
17
+ :title: "\n3回生\n"
21
18
  :cont:
22
- - c-f, move Forwrard, 前or右へ
23
- - フォーマットは自由です.
19
+ - 栃木 琢冶 バイク,マグナ
20
+ - 丸毛(marumo) 崇史(浅野) メルモちゃん,奈良香芝,サッカー観戦,リバプール
21
+ - 辻 脩人(大崎) 大阪,塾のバイト,アニメ,
22
+ - 宮下 優理(西谷) 熊本,ジャグリング
23
+ - 和田 創熙souki(いのくち) 加古川,バイク,ninja250
24
+ - 大八木 利治(北村) 嵐山,野球観戦,ラーメン(極鶏),テニス
25
+ - 藤村 尚輝(巳波) 西宮,スマホゲーム
26
+ - 影山 八哉(西谷) 川西,サッカー,漫画,ボード
27
+ :ruby-kansai:
28
+ :opts:
29
+ :short: "-r"
30
+ :long: "--ruby"
31
+ :desc: ruby関西のメンツ
32
+ :title: "\nruby関西のメンツ\n"
33
+ :cont:
34
+ - ひがきさん
35
+ - 船原まさお (@steps107)
36
+ - 小林慎治 京都大学 大学院情報学研究科EHR
37
+ -
38
+
24
39
 
@@ -1,3 +1,3 @@
1
1
  module MyHelp
2
- VERSION = "0.2.3"
2
+ VERSION = "0.3.0"
3
3
  end
data/lib/my_help.rb CHANGED
@@ -15,7 +15,20 @@ module MyHelp
15
15
 
16
16
  def initialize(argv=[])
17
17
  @argv = argv
18
- @target_dir = File.expand_path("../../lib/daddygongon", __FILE__)
18
+ @source_dir = File.expand_path("../../lib/daddygongon", __FILE__)
19
+ @target_dir = File.join(ENV['HOME'],'.my_help')
20
+ set_help_dir_if_not_exists
21
+ end
22
+
23
+ def set_help_dir_if_not_exists
24
+ return if File::exists?(@target_dir)
25
+ FileUtils.mkdir_p(@target_dir)
26
+ helps =Dir.entries(@source_dir)
27
+ helps[2..-1].each{|file|
28
+ file_path=File.join(@target_dir,file)
29
+ next if File::exists?(file_path)
30
+ FileUtils.cp((File.join(@source_dir,file)),@target_dir,:verbose=>true)
31
+ }
19
32
  end
20
33
 
21
34
  def execute
@@ -30,6 +43,8 @@ module MyHelp
30
43
  opt.on('-i NAME', '--init NAME', 'NAME(例:test_help)のtemplateを作成.'){|file| init_help(file)}
31
44
  opt.on('-m', '--make', 'make and install:local all helps.'){make_help}
32
45
  opt.on('-c', '--clean', 'clean up exe dir.'){clean_exe}
46
+ opt.on('--install_local','install local after edit helps'){install_local}
47
+ # opt.on('--initialize','initialize local help directory'){initialize_local}
33
48
  end
34
49
  begin
35
50
  command_parser.parse!(@argv)
@@ -39,6 +54,14 @@ module MyHelp
39
54
  exit
40
55
  end
41
56
 
57
+ def install_local
58
+ Dir.chdir(File.expand_path('../..',@target_dir))
59
+ p Dir.pwd
60
+ system "git add -A"
61
+ system "git commit -m 'update exe dirs'"
62
+ system "Rake install:local"
63
+ end
64
+
42
65
  def short_name(file)
43
66
  file_name=file.split('_')
44
67
  return file_name[0][0]+"_"+file_name[1][0]
@@ -48,9 +71,8 @@ module MyHelp
48
71
  Dir.entries(@target_dir)[2..-1].each{|file|
49
72
  next if file[0]=='#' or file[-1]=='~'
50
73
  exe_cont="#!/usr/bin/env ruby\nrequire 'specific_help'\n"
51
- # exe_cont << "help_file = '#{File.join(@target_dir,file)}'\n"
52
- # exe_cont << @target_dir
53
- exe_cont << 'target_dir = File.expand_path("../../lib/daddygongon", __FILE__)'+"\n"
74
+ # exe_cont << 'target_dir = File.expand_path("../../lib/daddygongon", __FILE__)'+"\n"
75
+ exe_cont << "target_dir = File.join(ENV['HOME'],'.my_help')"+"\n"
54
76
  exe_cont << "help_file = File.join(target_dir,'#{file}')\n"
55
77
  exe_cont << "SpecificHelp::Command.run(help_file, ARGV)\n"
56
78
  [file, short_name(file)].each{|name|
@@ -73,7 +95,7 @@ module MyHelp
73
95
 
74
96
  def init_help(file)
75
97
  p target_help=File.join(@target_dir,file)
76
- p template = File.join(File.dirname(@target_dir),'my_help','template_help')
98
+ p template = File.join(File.dirname(@source_dir),'my_help','template_help')
77
99
  FileUtils::Verbose.cp(template,target_help)
78
100
  end
79
101
 
data/lib/specific_help.rb CHANGED
@@ -29,22 +29,31 @@ module SpecificHelp
29
29
  opts = val[:opts]
30
30
  opt.on(opts[:short],opts[:long],opts[:desc]) {disp_from_help_cont(key)}
31
31
  }
32
+ opt.on('--to_hiki','convert to hikidoc format'){to_hiki}
32
33
  end
33
- begin
34
+ # begin
34
35
  command_parser.parse!(@argv)
35
- rescue=> eval
36
- p eval
37
- end
36
+ # rescue=> eval
37
+ # p eval
38
+ # end
38
39
  exit
39
40
  end
40
41
 
42
+ def to_hiki
43
+ puts '>>>'
44
+ @help_cont.each_pair{|key,val|
45
+ p key,val
46
+ # opts = val[:opts]
47
+ # puts opts[:short].to_s,opts[:long].to_s,opts[:desc].to_s
48
+ items =@help_cont[key]
49
+ puts items[:title]
50
+ disp(items[:cont])
51
+ }
52
+ end
53
+
41
54
  def disp(lines)
42
55
  lines.each{|line|
43
- if line.include?(',')
44
- puts " #{line}"
45
- else
46
- puts " #{line}"
47
- end
56
+ puts " #{line}"
48
57
  }
49
58
  end
50
59
 
data/my_help.wiki/Home.md CHANGED
@@ -42,6 +42,7 @@ git clone git@github.com:daddygongon/my_help.git
42
42
  これは,最後のrake install:localをコマンドから実行する方法がわからんかったからですが...
43
43
  - helpファイルのpush共有とかも考えるとこれがいいのかも.
44
44
  - home以下に置く方法と比較分析してください.
45
+ - lib/daddygongonにあたらしいhelpを置くようにしていましたが,helpに個人情報を入れるとgit pushでさらしてしまうので,やめました.
45
46
 
46
47
  用意されているコマンドは,
47
48
 
@@ -94,10 +95,11 @@ cp /usr/local/lib/ruby/gems/2.2.0/gems/my_help-0.2.1/lib/my_help/template_help
94
95
  もし使えないときは,bin pathが通ってないので,terminalをnewしてください.
95
96
 
96
97
  # userの独自helpの達成方法
97
- (rake my_helpでやっていたが,今は,my_help -mに移行)
98
+ - rake my_helpでやっていたが,今は,my_help -mに移行
99
+ - @target dirをmy_help/lib/daddygongonからENV['HOME']/.my_helpに変更
98
100
 
99
101
  exe中のファイルをrakeで自動生成.
100
- ./lib/daddygongon/にそれらのdataを保存.以下ではその名前から
102
+ @target_dirにそれらのdataを保存.以下ではその名前から
101
103
  exe中に実行ファイルを自動生成させている.
102
104
  ```
103
105
  lib/daddygongon/
@@ -109,26 +111,22 @@ exe
109
111
  ```
110
112
  ということ.これは,
111
113
  ```
112
- rake my_help
114
+ my_help -m
113
115
  ```
114
116
  で実行される.これを
115
117
  ```
116
118
  rake install:local
117
119
  ```
118
- すれば必要とするhelpがlocalな環境で表示される.
120
+ すれば必要とするhelpがlocalな環境でbin dirに移され,CUI commandとして実行可能になる.
119
121
 
120
- たくさんの実行ファイルを/usr/loca/binに置くことになるので,
122
+ たくさんの実行ファイルを/usr/loca/binに置くことになるので,あらたなmy_helpを作成するときには
121
123
  ```
122
124
  gem uninstall my_help
123
125
  gem uninstall emacs_help
124
126
  ```
125
- でそこをcleanにしておくことが望ましい.
126
-
127
- Rakefileの中身は以下の通り.
128
- ```
129
- in Rakefile
130
- ```
127
+ でそのdirをcleanにしておくことが望ましい.
131
128
 
129
+ 中身は以下の通り.
132
130
  ```ruby
133
131
  desc "make own help from lib/daddygongon/files"
134
132
  task :my_help do
@@ -42,6 +42,7 @@ git clone git@github.com:daddygongon/my_help.git
42
42
  これは,最後のrake install:localをコマンドから実行する方法がわからんかったからですが...
43
43
  - helpファイルのpush共有とかも考えるとこれがいいのかも.
44
44
  - home以下に置く方法と比較分析してください.
45
+ - lib/daddygongonにあたらしいhelpを置くようにしていましたが,helpに個人情報を入れるとgit pushでさらしてしまうので,やめました.
45
46
 
46
47
  用意されているコマンドは,
47
48
 
@@ -94,10 +95,11 @@ cp /usr/local/lib/ruby/gems/2.2.0/gems/my_help-0.2.1/lib/my_help/template_help
94
95
  もし使えないときは,bin pathが通ってないので,terminalをnewしてください.
95
96
 
96
97
  # userの独自helpの達成方法
97
- (rake my_helpでやっていたが,今は,my_help -mに移行)
98
+ - rake my_helpでやっていたが,今は,my_help -mに移行
99
+ - @target dirをmy_help/lib/daddygongonからENV['HOME']/.my_helpに変更
98
100
 
99
101
  exe中のファイルをrakeで自動生成.
100
- ./lib/daddygongon/にそれらのdataを保存.以下ではその名前から
102
+ @target_dirにそれらのdataを保存.以下ではその名前から
101
103
  exe中に実行ファイルを自動生成させている.
102
104
  ```
103
105
  lib/daddygongon/
@@ -109,26 +111,22 @@ exe
109
111
  ```
110
112
  ということ.これは,
111
113
  ```
112
- rake my_help
114
+ my_help -m
113
115
  ```
114
116
  で実行される.これを
115
117
  ```
116
118
  rake install:local
117
119
  ```
118
- すれば必要とするhelpがlocalな環境で表示される.
120
+ すれば必要とするhelpがlocalな環境でbin dirに移され,CUI commandとして実行可能になる.
119
121
 
120
- たくさんの実行ファイルを/usr/loca/binに置くことになるので,
122
+ たくさんの実行ファイルを/usr/loca/binに置くことになるので,あらたなmy_helpを作成するときには
121
123
  ```
122
124
  gem uninstall my_help
123
125
  gem uninstall emacs_help
124
126
  ```
125
- でそこをcleanにしておくことが望ましい.
126
-
127
- Rakefileの中身は以下の通り.
128
- ```
129
- in Rakefile
130
- ```
127
+ でそのdirをcleanにしておくことが望ましい.
131
128
 
129
+ 中身は以下の通り.
132
130
  ```ruby
133
131
  desc "make own help from lib/daddygongon/files"
134
132
  task :my_help do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: my_help
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shigeto R. Nishitani
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-02 00:00:00.000000000 Z
11
+ date: 2016-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -112,9 +112,10 @@ description: Emulating CUI(CLI) help, an user makes and displays his own helps.
112
112
  email:
113
113
  - shigeto_nishitani@me.com
114
114
  executables:
115
- - "#emacs_help#"
116
115
  - e_h
117
116
  - emacs_help
117
+ - m_h
118
+ - member_help
118
119
  - my_help
119
120
  - t_h
120
121
  - test_help
@@ -132,9 +133,10 @@ files:
132
133
  - Rakefile
133
134
  - bin/console
134
135
  - bin/setup
135
- - exe/#emacs_help#
136
136
  - exe/e_h
137
137
  - exe/emacs_help
138
+ - exe/m_h
139
+ - exe/member_help
138
140
  - exe/my_help
139
141
  - exe/t_h
140
142
  - exe/test_help
data/exe/#emacs_help# DELETED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'specific_help'
3
-
4
- help_file = '/Users/bob/MultiScaleModeling/2016/my_help/lib/daddygongon/emacs_help'
5
- SpecificHelp::Command.run(help_file, ARGV)