fspath-mac 3.1.0 → 3.1.1
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 +8 -8
- data/ext/fspath/mac/extconf.rb +8 -0
- data/fspath-mac.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
M2FlM2FmMmVjYjk4MmY4MGQ4Yjk3YzM2MjA5MzBlY2QxZmE5MTlhNw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTFhOWI1ZmIxMTgyYzlmOTVmYmY3ZGZkYzdhMGQ3NWU3ZGFkODc1NQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
M2M1NWI5YWEzNDc1MDJmYjY5YjY2YzRmZmYyYjA0ZWVhMjI1ODU0MDNjNzM3
|
|
10
|
+
OGNhZDIzYjNhNzEwN2E0YWQ0ODk4NDFkOGE2MzI3OWJmMDUxZmM3OGYwNzNi
|
|
11
|
+
NTNlYTk0NTczNTJmY2YyZTFjZGJjZmUyOWNiNWFkMjA5Y2I4Y2Y=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
OGRhMTgzYWRkNjI2YzkxZThiMTBjMjQzMjE5YWVlZjZiMDVlYjFjMGZmZmFm
|
|
14
|
+
NzZlMWU2ZDNjYTdkNTlmYTAzYTczOTkxOTEyYzg5MjE5MjFiMThkMTFkZmNj
|
|
15
|
+
ZjJjZGU2MTZiYmQyZDg2MmQ3NDgyNWYyOTAxOTkyOTM0MTgwNjI=
|
data/ext/fspath/mac/extconf.rb
CHANGED
|
@@ -3,3 +3,11 @@ require 'mkmf'
|
|
|
3
3
|
with_ldflags($LDFLAGS + ' -framework AppKit'){ true }
|
|
4
4
|
|
|
5
5
|
create_makefile('fspath/mac/ext')
|
|
6
|
+
|
|
7
|
+
# fix Makefile not containing rule for .m
|
|
8
|
+
makefile = File.read('Makefile')
|
|
9
|
+
if makefile && makefile['.c.o:'] && !makefile['.m.o:']
|
|
10
|
+
File.open('Makefile', 'w') do |f|
|
|
11
|
+
f << makefile.sub('.c.o:', '.m.o:')
|
|
12
|
+
end
|
|
13
|
+
end
|
data/fspath-mac.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'fspath-mac'
|
|
5
|
-
s.version = '3.1.
|
|
5
|
+
s.version = '3.1.1'
|
|
6
6
|
s.summary = %q{FSPath methods for mac (move_to_trash, color labeling, spotlight comments, …)}
|
|
7
7
|
s.homepage = "http://github.com/toy/#{s.name}"
|
|
8
8
|
s.authors = ['Ivan Kuchin']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fspath-mac
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Kuchin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fspath
|
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
78
|
rubyforge_project: fspath-mac
|
|
79
|
-
rubygems_version: 2.4.
|
|
79
|
+
rubygems_version: 2.4.2
|
|
80
80
|
signing_key:
|
|
81
81
|
specification_version: 4
|
|
82
82
|
summary: FSPath methods for mac (move_to_trash, color labeling, spotlight comments,
|