mrpin-amf 2.1.11 → 2.1.12
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 +1 -17
- data/mrpin-amf.gemspec +14 -12
- metadata +10 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d6dc059441be6edd2e25dd21a9b625661740e81
|
|
4
|
+
data.tar.gz: c52613994017b849b3f84d1c5c4923bfe2b24257
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a63473ddbee2a8748e472a95e66deca01379cbcd843ad11efabd3c73d59d3299ce7513d95104828866f0180e07c69c860d2c604b5cda9045cc3aed39ff6a49b
|
|
7
|
+
data.tar.gz: 229e51fddc03fab4ded932dbebc38d60271608b0d7f7ba61f8e745ef84c0e2e0d71dbd3d3defaafda795a0112c475a63122a84dbd54aac93ccfa5b3455a5f126
|
|
@@ -1,22 +1,6 @@
|
|
|
1
1
|
# Disable the native extension by creating an empty Makefile on JRuby
|
|
2
2
|
if RUBY_PLATFORM == 'java'
|
|
3
|
-
|
|
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
|
-
|
|
17
|
-
puts 'Generating phony Makefile for JRuby so the gem installs'
|
|
18
|
-
mfile = File.join(File.dirname(__FILE__), 'Makefile')
|
|
19
|
-
File.open(mfile, 'w') { |f| f.write dummy_makefile(File.dirname(__FILE__)) }
|
|
3
|
+
raise NotImplementedError 'jruby not supported c extensions'
|
|
20
4
|
exit 0
|
|
21
5
|
else
|
|
22
6
|
require 'mkmf'
|
data/mrpin-amf.gemspec
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
|
-
spec.name
|
|
5
|
-
spec.version
|
|
6
|
-
spec.platform
|
|
7
|
-
spec.authors
|
|
8
|
-
spec.email
|
|
9
|
-
spec.homepage
|
|
10
|
-
spec.license
|
|
11
|
-
spec.summary
|
|
12
|
-
spec.description
|
|
4
|
+
spec.name = 'mrpin-amf'
|
|
5
|
+
spec.version = '2.1.12'
|
|
6
|
+
spec.platform = Gem::Platform::RUBY
|
|
7
|
+
spec.authors = ['Jacob Henry', 'Stephen Augenstein', "Joc O'Connor", 'Gregory Tkach']
|
|
8
|
+
spec.email = %w(gregory.tkach@gmail.com)
|
|
9
|
+
spec.homepage = 'https://github.com/mrpin/mrpin-amf-ruby'
|
|
10
|
+
spec.license = 'MIT'
|
|
11
|
+
spec.summary = 'Fast AMF3 serializer/deserializer'
|
|
12
|
+
spec.description = 'Fast AMF3 serializer/deserializer with remoting request/response wrappers to simplify integration'
|
|
13
|
+
|
|
14
|
+
spec.files = `git ls-files`.split($/)
|
|
15
|
+
spec.test_files = Dir[*['spec/**/*_spec.rb']]
|
|
13
16
|
|
|
14
|
-
spec.files = `git ls-files`.split($/)
|
|
15
|
-
spec.test_files = Dir[*['spec/**/*_spec.rb']]
|
|
16
|
-
spec.extensions = Dir[*['ext/**/extconf.rb']]
|
|
17
17
|
spec.require_paths = ['lib']
|
|
18
18
|
|
|
19
19
|
spec.add_development_dependency 'rake-compiler', '~> 0'
|
|
@@ -21,4 +21,6 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.has_rdoc = true
|
|
22
22
|
spec.extra_rdoc_files = %w( README.rdoc )
|
|
23
23
|
spec.rdoc_options = %w(--line-numbers --main README.rdoc)
|
|
24
|
+
|
|
25
|
+
spec.extensions = Dir[*['ext/**/extconf.rb']] if RUBY_PLATFORM != 'java'
|
|
24
26
|
end
|
metadata
CHANGED
|
@@ -1,39 +1,37 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mrpin-amf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jacob Henry
|
|
8
8
|
- Stephen Augenstein
|
|
9
9
|
- Joc O'Connor
|
|
10
10
|
- Gregory Tkach
|
|
11
|
-
autorequire:
|
|
11
|
+
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
14
|
date: 2017-04-04 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
|
-
name: rake-compiler
|
|
18
17
|
requirement: !ruby/object:Gem::Requirement
|
|
19
18
|
requirements:
|
|
20
19
|
- - "~>"
|
|
21
20
|
- !ruby/object:Gem::Version
|
|
22
21
|
version: '0'
|
|
23
|
-
|
|
22
|
+
name: rake-compiler
|
|
24
23
|
prerelease: false
|
|
24
|
+
type: :development
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0'
|
|
30
|
-
description: Fast AMF3 serializer/deserializer with remoting request/response wrappers
|
|
31
|
-
to simplify integration
|
|
30
|
+
description: Fast AMF3 serializer/deserializer with remoting request/response wrappers to simplify integration
|
|
32
31
|
email:
|
|
33
32
|
- gregory.tkach@gmail.com
|
|
34
33
|
executables: []
|
|
35
|
-
extensions:
|
|
36
|
-
- ext/rocketamf_ext/extconf.rb
|
|
34
|
+
extensions: []
|
|
37
35
|
extra_rdoc_files:
|
|
38
36
|
- README.rdoc
|
|
39
37
|
files:
|
|
@@ -120,7 +118,7 @@ homepage: https://github.com/mrpin/mrpin-amf-ruby
|
|
|
120
118
|
licenses:
|
|
121
119
|
- MIT
|
|
122
120
|
metadata: {}
|
|
123
|
-
post_install_message:
|
|
121
|
+
post_install_message:
|
|
124
122
|
rdoc_options:
|
|
125
123
|
- "--line-numbers"
|
|
126
124
|
- "--main"
|
|
@@ -138,9 +136,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
138
136
|
- !ruby/object:Gem::Version
|
|
139
137
|
version: '0'
|
|
140
138
|
requirements: []
|
|
141
|
-
rubyforge_project:
|
|
142
|
-
rubygems_version: 2.
|
|
143
|
-
signing_key:
|
|
139
|
+
rubyforge_project:
|
|
140
|
+
rubygems_version: 2.4.8
|
|
141
|
+
signing_key:
|
|
144
142
|
specification_version: 4
|
|
145
143
|
summary: Fast AMF3 serializer/deserializer
|
|
146
144
|
test_files: []
|