libyajl2 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/ext/libyajl2/extconf.rb +1 -7
- data/lib/libyajl2/version.rb +1 -1
- data/libyajl2.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcd35307c7550e6e9aa214af8a5013f87ea6ade7
|
4
|
+
data.tar.gz: 0587397cbe9f568c6b7c88efa221843f6d9d1205
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d3e77e33e0582145c8f0a3ad733acb9654cece56b5c7f295d59fe879df4203185f4b8dfe3d19e391dc1baf1eb7170abb2a01c2a9ee41d41f15db2ac86e8fe9d
|
7
|
+
data.tar.gz: 2b3b9aea03d1e698c45b09da6bb70073a654a16e36da468572070d558b9d8df7782fd79c2895b076ab145f6866bcdc94981caf3d3dd4bb04ffdbfa166e5825ed
|
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
libyajl2-gem
|
2
2
|
============
|
3
3
|
|
4
|
-
[![Build Status](https://secure.travis-ci.org/
|
5
|
-
[![Dependency Status](https://gemnasium.com/
|
6
|
-
[![Code Climate](https://codeclimate.com/github/
|
4
|
+
[![Build Status](https://secure.travis-ci.org/opscode/libyajl2-gem.svg?branch=master)](http://travis-ci.org/opscode/libyajl2-gem)
|
5
|
+
[![Dependency Status](https://gemnasium.com/opscode/libyajl2-gem.svg)](https://gemnasium.com/opscode/libyajl2-gem)
|
6
|
+
[![Code Climate](https://codeclimate.com/github/opscode/libyajl2-gem.png)](https://codeclimate.com/github/opscode/libyajl2-gem)
|
7
7
|
[![Gem Version](https://badge.fury.io/rb/libyajl2.svg)](http://badge.fury.io/rb/libyajl2)
|
8
8
|
|
9
9
|
gem to install the libyajl2 c-library for distributions which do not have it
|
data/ext/libyajl2/extconf.rb
CHANGED
@@ -104,11 +104,6 @@ EOF
|
|
104
104
|
system("make >make.out 2>&1") || raise # rubinius doesn't like the output this generates
|
105
105
|
# ...so we can hack up what install does later and copy over the include files
|
106
106
|
|
107
|
-
# not sure why ruby windows produces .so's instead of .dll's
|
108
|
-
if windows?
|
109
|
-
FileUtils.mv "libyajl.so", "yajl.dll"
|
110
|
-
end
|
111
|
-
|
112
107
|
File.open("Makefile", "w+") do |f|
|
113
108
|
f.write <<EOF
|
114
109
|
TARGET = libyajl
|
@@ -120,7 +115,7 @@ EOF
|
|
120
115
|
f.write <<EOF
|
121
116
|
install:
|
122
117
|
\tmkdir -p #{prefix}/lib
|
123
|
-
\tcp
|
118
|
+
\tcp libyajl.so #{prefix}/lib/libyajl.so
|
124
119
|
\tcp libyajldll.a #{prefix}/lib/libyajldll.a
|
125
120
|
\tcp libyajl.def #{prefix}/lib/libyajl.def
|
126
121
|
\tmkdir -p #{prefix}/include/yajl
|
@@ -141,4 +136,3 @@ EOF
|
|
141
136
|
end
|
142
137
|
|
143
138
|
Libyajl2Build.makemakefiles
|
144
|
-
|
data/lib/libyajl2/version.rb
CHANGED
data/libyajl2.gemspec
CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "libyajl2"
|
8
8
|
spec.version = Libyajl2::VERSION
|
9
9
|
spec.authors = ["lamont-granquist"]
|
10
|
-
spec.email = ["lamont@
|
10
|
+
spec.email = ["lamont@getchef.com"]
|
11
11
|
spec.summary = %q{Installs a vendored copy of libyajl2 for distributions which lack it}
|
12
12
|
spec.description = spec.summary
|
13
|
-
spec.homepage = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/opscode/libyajl2-gem"
|
14
14
|
spec.licenses = ["Apache 2.0"]
|
15
15
|
|
16
16
|
spec.files = Dir.glob("{ext,lib,spec}/**/*") +
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libyajl2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lamont-granquist
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -96,7 +96,7 @@ dependencies:
|
|
96
96
|
version: '1.9'
|
97
97
|
description: Installs a vendored copy of libyajl2 for distributions which lack it
|
98
98
|
email:
|
99
|
-
- lamont@
|
99
|
+
- lamont@getchef.com
|
100
100
|
executables: []
|
101
101
|
extensions:
|
102
102
|
- ext/libyajl2/extconf.rb
|
@@ -309,7 +309,7 @@ files:
|
|
309
309
|
- spec/ffi_spec.rb
|
310
310
|
- spec/path_spec.rb
|
311
311
|
- spec/spec_helper.rb
|
312
|
-
homepage: https://github.com/
|
312
|
+
homepage: https://github.com/opscode/libyajl2-gem
|
313
313
|
licenses:
|
314
314
|
- Apache 2.0
|
315
315
|
metadata: {}
|