natives 0.2.1 → 0.2.2
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 +8 -8
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/natives.gemspec +4 -4
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OGQ5NjE4YjhlOGE3Y2E1YWZiMGVlYzZmMDM2OWQyNGQzNzZmZTQwMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDZmODY4MDI0MThiMmFmMGQyOTcwNmYxMTcwMDk5NjJjMTgzZjAyMg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NmNiYWZjMTZhZjcxY2NkMmY4NmFkMGJjODE0MzMxY2E0MDg3MGVmN2Y3YmFl
|
|
10
|
+
OThlZjUzZGJmMmQ2ZTI1MjczMjljNjczNmQwMTY1ZTFjYzA2NWE1NmM2OTAx
|
|
11
|
+
NWIwZWQ2ODQyMmM0OTYzZGJmNGNhNzA3Y2E5NDZkM2JmMTIxNjM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjkzMWFiMzIzMjkzOTk1NjhmODUzMjEzMDYwYjdiZWFiYWRkNTY5ZTAzMGIw
|
|
14
|
+
YTVlZDljNDc3OGZlNzFiZDNiMzhlMWEwZTcwZGY5NmM3NmFjM2RhZWY0NDQ1
|
|
15
|
+
ZjFkYTMzOGM4MTAxNzZkMTVjNTE1YWY5ZTVhYmVjMzhkMmU1ZDg=
|
data/Rakefile
CHANGED
|
@@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
|
|
|
17
17
|
gem.name = "natives"
|
|
18
18
|
gem.homepage = "http://github.com/teohm/natives"
|
|
19
19
|
gem.license = "MIT"
|
|
20
|
-
gem.summary = %Q{
|
|
21
|
-
gem.description = %Q{
|
|
20
|
+
gem.summary = %Q{Installs native library packages required by Ruby gems on your machine.}
|
|
21
|
+
gem.description = %Q{Installs native library packages required by Ruby gems on different platforms, based on the catalog maintained by natives-catalog project.}
|
|
22
22
|
gem.email = "teohuiming@gmail.com"
|
|
23
23
|
gem.authors = ["Huiming Teo"]
|
|
24
24
|
# dependencies defined in Gemfile
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
data/natives.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: natives 0.2.
|
|
5
|
+
# stub: natives 0.2.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "natives"
|
|
9
|
-
s.version = "0.2.
|
|
9
|
+
s.version = "0.2.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.authors = ["Huiming Teo"]
|
|
13
13
|
s.date = "2013-11-04"
|
|
14
|
-
s.description = "
|
|
14
|
+
s.description = "Installs native library packages required by Ruby gems on different platforms, based on the catalog maintained by natives-catalog project."
|
|
15
15
|
s.email = "teohuiming@gmail.com"
|
|
16
16
|
s.executables = ["natives"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -80,7 +80,7 @@ Gem::Specification.new do |s|
|
|
|
80
80
|
s.licenses = ["MIT"]
|
|
81
81
|
s.require_paths = ["lib"]
|
|
82
82
|
s.rubygems_version = "2.1.10"
|
|
83
|
-
s.summary = "
|
|
83
|
+
s.summary = "Installs native library packages required by Ruby gems on your machine."
|
|
84
84
|
|
|
85
85
|
if s.respond_to? :specification_version then
|
|
86
86
|
s.specification_version = 4
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: natives
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Huiming Teo
|
|
@@ -140,7 +140,8 @@ dependencies:
|
|
|
140
140
|
- - ! '>='
|
|
141
141
|
- !ruby/object:Gem::Version
|
|
142
142
|
version: '0'
|
|
143
|
-
description:
|
|
143
|
+
description: Installs native library packages required by Ruby gems on different platforms,
|
|
144
|
+
based on the catalog maintained by natives-catalog project.
|
|
144
145
|
email: teohuiming@gmail.com
|
|
145
146
|
executables:
|
|
146
147
|
- natives
|
|
@@ -228,5 +229,5 @@ rubyforge_project:
|
|
|
228
229
|
rubygems_version: 2.1.10
|
|
229
230
|
signing_key:
|
|
230
231
|
specification_version: 4
|
|
231
|
-
summary:
|
|
232
|
+
summary: Installs native library packages required by Ruby gems on your machine.
|
|
232
233
|
test_files: []
|