manpages 0.3.1 → 0.3.2

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: 004f3ea0f6975be144e959a07a1e675ca74f0a74
4
- data.tar.gz: 214fdd72a12baa995026e39886663936ca163809
3
+ metadata.gz: 7896e3cea74abf59bbb5f95226a23f8d77277fc9
4
+ data.tar.gz: 839b7ec2bae6864689c16716c80485aad8e8f349
5
5
  SHA512:
6
- metadata.gz: a044a4fbb40dc96cf9991f9c60e45829f5f0454ad7a68684612e850c4188d854d75547ba6e8a6fdad727d72f1bc0e6cddef42a1a160d967ececed6098be8cc3f
7
- data.tar.gz: 062589cd697b53156be38eb97d9f329a91ee2509b866d5710157263749544cee26b5bedffdd55765177db4ceedc82b09b946eba31e1a1557d726bb97707979f1
6
+ metadata.gz: 6a5757dd8e0f4f1bf54237e77f2171847923ac0fd80840d7c3b5038ad9b346d5cc66cd942f2736c49217d3251854cdef4b0504d0e04904cd84820ba1b84633f1
7
+ data.tar.gz: 4f2a6fd39f99369effbb68d56dbe3ea0e9dfef21b50ac27c79320ee7b59d90e85b283b5bccd1e87c0f534ec86d2abaa95631f1802efb42a1ea399f7f8b3d4aac
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- manpages (0.3.1)
4
+ manpages (0.3.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,3 +1,3 @@
1
1
  module Manpages
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
@@ -5,7 +5,7 @@ Gem::CommandManager.instance.register_command(:manpages)
5
5
 
6
6
  Gem.post_install do |installer|
7
7
  source_dir = installer.spec.gem_dir
8
- target_dir = File.expand_path(installer.bin_dir, "../share/man")
8
+ target_dir = File.expand_path("#{installer.bin_dir}/../share/man")
9
9
 
10
10
  Manpages::Install.new(installer.spec, source_dir, target_dir).install_manpages
11
11
  end
@@ -13,7 +13,7 @@ end
13
13
  Gem.pre_uninstall do |uninstaller|
14
14
  bin_dir = uninstaller.bin_dir || Gem.bindir(uninstaller.spec.base_dir)
15
15
  source_dir = uninstaller.spec.gem_dir
16
- target_dir = File.expand_path(bin_dir, "../share/man")
16
+ target_dir = File.expand_path("#{bin_dir}/../share/man")
17
17
 
18
18
  Manpages::Uninstall.new(uninstaller.spec, source_dir, target_dir).uninstall_manpages
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manpages
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bodo Tasche