libyajl2 1.0.1 → 1.1.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: 8f1c39dafa072f6b22a46c5f40bc2ea5205201ac
4
- data.tar.gz: cb270838aefb1dfe50860b2a77fb0bbe276d2a88
3
+ metadata.gz: dcd35307c7550e6e9aa214af8a5013f87ea6ade7
4
+ data.tar.gz: 0587397cbe9f568c6b7c88efa221843f6d9d1205
5
5
  SHA512:
6
- metadata.gz: 0c316c83934ba83d86832a036d659554cb31f96060f013aa94501433f7790db445d385f69ef3771dabaf2f039d9f68fa45d57f90659722903704eff39544ea3e
7
- data.tar.gz: f911351ca20cd23859ae9293eff4744a5d64ca998fe779d10497576a767102e4e54c563e79c3c8461a005874c9818253c29d9047aa90a54c2cd6eb92ff327c9a
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/lamont-granquist/libyajl2-gem.svg?branch=master)](http://travis-ci.org/lamont-granquist/libyajl2-gem)
5
- [![Dependency Status](https://gemnasium.com/lamont-granquist/libyajl2-gem.svg)](https://gemnasium.com/lamont-granquist/libyajl2-gem)
6
- [![Code Climate](https://codeclimate.com/github/lamont-granquist/libyajl2-gem.png)](https://codeclimate.com/github/lamont-granquist/libyajl2-gem)
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
@@ -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 yajl.dll #{prefix}/lib/yajl.dll
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
-
@@ -1,3 +1,3 @@
1
1
  module Libyajl2
2
- VERSION = "1.0.1"
2
+ VERSION = "1.1.0"
3
3
  end
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@scriptkiddie.org"]
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/lamont-granquist/libyajl2-gem"
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.1
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-07-16 00:00:00.000000000 Z
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@scriptkiddie.org
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/lamont-granquist/libyajl2-gem
312
+ homepage: https://github.com/opscode/libyajl2-gem
313
313
  licenses:
314
314
  - Apache 2.0
315
315
  metadata: {}