tidy_ffi 0.1.5 → 0.1.6

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 79ff573dedf8b70b0d2e87e4ffc295fbfbf242b5
4
+ data.tar.gz: 5bc7b84df19c357ca90677946941bfc0a5d442f3
5
+ SHA512:
6
+ metadata.gz: cacfe277cfa0c1086c81cc6c02ecbf169b038850ae5f9e9d96fc346c9d05145e5b0cf73277ba60bd411e2197881ef34350dad35500e914ae42f5d50db7018d31
7
+ data.tar.gz: 80f8620f10c35eedb0d1ae595ccf435366315c0f96a77611ea505dc1db99050fe51ce6f9ffadef8797f319338f59652b2c4e04366684c36f91887d084541fae4
data/CHANGELOG CHANGED
@@ -1,3 +1,4 @@
1
+ v0.1.6. Relax version constraint of the FFI gem dependency
1
2
  v0.1.5. Fix JRuby issues.
2
3
  v0.1.4. Fix the way libtidy is located on the filesystem. Works if libtidy is in /usr/lib64, instead of /usr/lib
3
4
  v0.1.3. Fix recognition of date on weird environments
data/lib/tidy_ffi/tidy.rb CHANGED
@@ -64,7 +64,7 @@ class TidyFFI::Tidy
64
64
 
65
65
  # Default options for tidy. Works just like options= method
66
66
  def default_options=(options)
67
- @default_options.merge_with_options(options)
67
+ default_options.merge_with_options(options)
68
68
  end
69
69
 
70
70
  # Returns a proxy class with options.
@@ -1,3 +1,3 @@
1
1
  module TidyFFI
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
data/tidy_ffi.gemspec CHANGED
@@ -18,5 +18,5 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_dependency 'ffi', "~> 1.2.0"
21
+ s.add_dependency 'ffi', "~> 1.2"
22
22
  end
metadata CHANGED
@@ -1,41 +1,38 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tidy_ffi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
5
- prerelease:
4
+ version: 0.1.6
6
5
  platform: ruby
7
6
  authors:
8
7
  - Eugene Pimenov
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-16 00:00:00.000000000 Z
11
+ date: 2015-03-23 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: ffi
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: 1.2.0
19
+ version: '1.2'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: 1.2.0
26
+ version: '1.2'
30
27
  description: Tidy library interface via FFI
31
28
  email: libc@libc.st
32
29
  executables: []
33
30
  extensions: []
34
31
  extra_rdoc_files: []
35
32
  files:
36
- - .gitignore
37
- - .rspec
38
- - .travis.yml
33
+ - ".gitignore"
34
+ - ".rspec"
35
+ - ".travis.yml"
39
36
  - CHANGELOG
40
37
  - Gemfile
41
38
  - LICENSE
@@ -56,33 +53,26 @@ files:
56
53
  - tidy_ffi.gemspec
57
54
  homepage: http://github.com/libc/tidy_ffi
58
55
  licenses: []
56
+ metadata: {}
59
57
  post_install_message:
60
58
  rdoc_options: []
61
59
  require_paths:
62
60
  - lib
63
61
  required_ruby_version: !ruby/object:Gem::Requirement
64
- none: false
65
62
  requirements:
66
- - - ! '>='
63
+ - - ">="
67
64
  - !ruby/object:Gem::Version
68
65
  version: '0'
69
- segments:
70
- - 0
71
- hash: 3224835435869118634
72
66
  required_rubygems_version: !ruby/object:Gem::Requirement
73
- none: false
74
67
  requirements:
75
- - - ! '>='
68
+ - - ">="
76
69
  - !ruby/object:Gem::Version
77
70
  version: '0'
78
- segments:
79
- - 0
80
- hash: 3224835435869118634
81
71
  requirements: []
82
72
  rubyforge_project: tidy-ffi
83
- rubygems_version: 1.8.24
73
+ rubygems_version: 2.4.5
84
74
  signing_key:
85
- specification_version: 3
75
+ specification_version: 4
86
76
  summary: Tidy library interface via FFI
87
77
  test_files:
88
78
  - spec/lowlevel_spec.rb