win32-shortcut 0.2.5 → 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: d92d92fae988ee2c3dceba4de32a9378ac518b3b
4
- data.tar.gz: 72e64e4d2a1ce958388de65e09402182b46259d3
3
+ metadata.gz: 7dc5bdfbbf3bb81ffe2b78b38631fea2849b04d8
4
+ data.tar.gz: 88b8faf9b7a8f98369b47ad5d35d468e5aa89c5b
5
5
  SHA512:
6
- metadata.gz: 1cd71ac67ed580d792d49ce8aed4804417ac29f927c6de49cf255737469af2ce237d17fa2f203da7c50c87019e440addae4b4679c6496082ecc899dc93f2f9c1
7
- data.tar.gz: bc55d55ec1397fa0002af6de29ad1c1ebe4b2e3bbd800a8a989201e79e517441b9c56950cef315a2e808339d12fc24fef08defd76f0ceb070b0968797697d3bf
6
+ metadata.gz: b2b46ef894a12890399b5241fed28a7c1fc39a91d214dd9f90176745ab5d3eb03da2c667097c8d2ee720c6b7515169cfb3dfec769037439b0205a24671a123fa
7
+ data.tar.gz: 780b1175795238afb8beed02d675acbf2144beec31eae4ab42d3a12a2913f1bc9c3e38521d285cbef1ff55ff4af1c0d263356d973e81758edd1da416a38f2ca7
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.3.0 - 19-Jun-2016
2
+ * License changed to Apache 2.0.
3
+ * Eliminated a deprecation warning.
4
+
1
5
  == 0.2.5 - 15-Jan-2016
2
6
  * This gem is now signed.
3
7
  * The gem related tasks in the Rakefile now assume Rubygems 2.x.
data/README CHANGED
@@ -33,7 +33,7 @@
33
33
  (C) 2003-2016, Daniel J. Berger, All Rights Reserved
34
34
 
35
35
  == License
36
- Artistic 2.0
36
+ Apache 2.0
37
37
 
38
38
  == Warranty
39
39
  This package is provided "as is" and without any express or
@@ -5,7 +5,7 @@ module Win32
5
5
  # The Shortcut class encapsulates an MS Windows shortcut.
6
6
  class Shortcut
7
7
  # The version of this library
8
- VERSION = '0.2.5'
8
+ VERSION = '0.3.0'
9
9
 
10
10
  # Activates and displays a window. If the window is minimized or maximized,
11
11
  # the system restores it to its original size and position. An application
@@ -57,7 +57,7 @@ module Win32
57
57
  # unless the +file+ already exists.
58
58
  #
59
59
  def self.open(file)
60
- raise ArgumentError, 'shortcut not found' unless File.exists?(file)
60
+ raise ArgumentError, 'shortcut not found' unless File.exist?(file)
61
61
  self.new(file)
62
62
  end
63
63
 
@@ -18,7 +18,7 @@ class TC_Shortcut < Test::Unit::TestCase
18
18
  end
19
19
 
20
20
  def test_version
21
- assert_equal('0.2.5', Shortcut::VERSION)
21
+ assert_equal('0.3.0', Shortcut::VERSION)
22
22
  end
23
23
 
24
24
  def test_arguments
@@ -2,9 +2,9 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'win32-shortcut'
5
- spec.version = '0.2.5'
5
+ spec.version = '0.3.0'
6
6
  spec.author = 'Daniel J. Berger'
7
- spec.license = 'Artistic 2.0'
7
+ spec.license = 'Apache 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
9
9
  spec.homepage = 'http://github.com/djberg96/win32-shortcut'
10
10
  spec.summary = 'An interface for creating or modifying Windows shortcuts.'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: win32-shortcut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -30,7 +30,7 @@ cert_chain:
30
30
  EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
31
31
  tGSHgAmcLlkdGgan182qsE/4kKM=
32
32
  -----END CERTIFICATE-----
33
- date: 2016-01-16 00:00:00.000000000 Z
33
+ date: 2016-06-19 00:00:00.000000000 Z
34
34
  dependencies: []
35
35
  description: |2
36
36
  The win32-shortcut library provides an interface for creating new
@@ -60,7 +60,7 @@ files:
60
60
  - win32-shortcut.gemspec
61
61
  homepage: http://github.com/djberg96/win32-shortcut
62
62
  licenses:
63
- - Artistic 2.0
63
+ - Apache 2.0
64
64
  metadata: {}
65
65
  post_install_message:
66
66
  rdoc_options: []
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
78
  version: '0'
79
79
  requirements: []
80
80
  rubyforge_project:
81
- rubygems_version: 2.4.8
81
+ rubygems_version: 2.6.4
82
82
  signing_key:
83
83
  specification_version: 4
84
84
  summary: An interface for creating or modifying Windows shortcuts.
metadata.gz.sig CHANGED
Binary file