mrpin-amf 2.1.10 → 2.1.11
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 +4 -4
- data/ext/rocketamf_ext/extconf.rb +14 -0
- data/mrpin-amf.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44868ee13b5913173f868fbf66f78cb40d7eb43c
|
|
4
|
+
data.tar.gz: 09b5b2a31701bfd44865a4acf0722b41ce5ad133
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e27f3b641522c0f93c42ee5e77492e1c0e943972732ed9f50f4e08231698b8acd0b698b8b8258fca8ed144937323e917bac5f2582e4f3fe23a3e8d69fd9cb1f5
|
|
7
|
+
data.tar.gz: a067dd2fe939a8c0618f2143fbc5626851768ebb37e6b7b20474e775078fad5b30d8977b2d1adf397d5c5132f730c059c43034a222b50f6d2b65269159249806
|
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Disable the native extension by creating an empty Makefile on JRuby
|
|
2
2
|
if RUBY_PLATFORM == 'java'
|
|
3
|
+
# creates a stub Makefile.
|
|
4
|
+
#
|
|
5
|
+
def dummy_makefile(srcdir)
|
|
6
|
+
configuration(srcdir) << <<RULES << CLEANINGS
|
|
7
|
+
CLEANFILES = #{$cleanfiles.join(' ')}
|
|
8
|
+
DISTCLEANFILES = #{$distcleanfiles.join(' ')}
|
|
9
|
+
|
|
10
|
+
all install static install-so install-rb: Makefile
|
|
11
|
+
.PHONY: all install static install-so install-rb
|
|
12
|
+
.PHONY: clean clean-so clean-static clean-rb
|
|
13
|
+
|
|
14
|
+
RULES
|
|
15
|
+
end
|
|
16
|
+
|
|
3
17
|
puts 'Generating phony Makefile for JRuby so the gem installs'
|
|
4
18
|
mfile = File.join(File.dirname(__FILE__), 'Makefile')
|
|
5
19
|
File.open(mfile, 'w') { |f| f.write dummy_makefile(File.dirname(__FILE__)) }
|
data/mrpin-amf.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = 'mrpin-amf'
|
|
5
|
-
spec.version = '2.1.
|
|
5
|
+
spec.version = '2.1.11'
|
|
6
6
|
spec.platform = Gem::Platform::RUBY
|
|
7
7
|
spec.authors = ['Jacob Henry', 'Stephen Augenstein', "Joc O'Connor", 'Gregory Tkach']
|
|
8
8
|
spec.email = %w(gregory.tkach@gmail.com)
|