kgem 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake/gempackagetask'
6
6
 
7
7
  spec = Gem::Specification.new do |s|
8
8
  s.name = "kgem"
9
- s.version = "0.1.5"
9
+ s.version = "0.1.6"
10
10
  s.author = "ruby.twiddler"
11
11
  s.email = "ruby.twiddler at gmail.com"
12
12
  s.homepage = "http://github.com/rubytwiddler/kgem/wiki"
@@ -28,7 +28,7 @@ EOF
28
28
  s.extra_rdoc_files = ["README"]
29
29
  end
30
30
 
31
- require 'ftools'
31
+ require 'fileutils'
32
32
  APP_DIR = File.expand_path(File.dirname(__FILE__))
33
33
  RES_DIR = File::join(APP_DIR, "pkg_resources")
34
34
  def install_console_helper(console_helper_name, target_cmd_name)
@@ -12,7 +12,7 @@ end
12
12
 
13
13
  #--------------------------------------------------------------------------
14
14
  #
15
- require 'ftools'
15
+ require 'fileutils'
16
16
 
17
17
  APP_NAME = File.basename(__FILE__).sub(/\.rb/, '')
18
18
  APP_DIR = File::dirname(File.expand_path(File.dirname(__FILE__)))
@@ -5,18 +5,16 @@
5
5
  # Ruby Gem with KDE GUI
6
6
  #
7
7
 
8
- $KCODE = 'UTF8'
9
- require 'ftools'
8
+ require 'fileutils'
10
9
 
11
10
  APP_FILE = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
12
11
  APP_NAME = File.basename(APP_FILE).sub(/\.rb/, '')
13
12
  APP_DIR = File::dirname(File.expand_path(File.dirname(APP_FILE)))
14
13
  LIB_DIR = File::join(APP_DIR, "lib")
15
- APP_VERSION = "0.1.5"
14
+ APP_VERSION = "0.1.6"
16
15
 
17
16
 
18
17
  # standard libs
19
- require 'fileutils'
20
18
  require 'rubygems'
21
19
  require 'rubygems/specification'
22
20
  require 'json'
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/ruby
2
2
 
3
- require 'ftools'
3
+ require 'fileutils'
4
4
 
5
5
  APP_DIR = File::dirname(File.expand_path(File.dirname(__FILE__)))
6
6
  RES_DIR = File::join(APP_DIR, "pkg_resources")
@@ -15,6 +15,15 @@ def install_console_helper(console_helper_name, target_cmd_name)
15
15
  console_app_file = File.join(etc_dir, 'security', 'console.apps', console_helper_name)
16
16
  console_helper_target = %x{ which consolehelper }.strip!
17
17
 
18
+ if !File.exist?(console_helper_target) then
19
+ puts <<-EOF
20
+
21
+ consolehelper is not installed.
22
+ install usermode package and try again.
23
+ EOF
24
+ exit 1
25
+ end
26
+
18
27
  puts "cp #{pam_src_path} #{pam_dst_path}"
19
28
  puts "ln -s #{console_helper_target} #{console_helper_link}"
20
29
  puts "write #{console_app_file}"
@@ -1,4 +1,3 @@
1
- require 'ftools'
2
1
  require 'fileutils'
3
2
  require 'rubygems'
4
3
  require 'rubygems/specification'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kgem
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 5
10
- version: 0.1.5
9
+ - 6
10
+ version: 0.1.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - ruby.twiddler
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-09-21 00:00:00 +09:00
18
+ date: 2010-09-25 00:00:00 +09:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency