natives-catalog 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/natives-catalog.gemspec +4 -4
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NTEyYmNiOWIxMjk1NzZhYWU1MjI5ZGJhOTgzODMxOGQ4YWIxOTMzYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MDEwN2E3MWQ3ZTVhOTNhZGM3OTE1YTc1ZWI5ZmY0Yzk4ZjcxMjg3ZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDYzNzgxYmI4ZGZhNGZhMzQyNzljY2E2MmZiYmFiMTcxYjEwYzIxNjI5MGI3
|
10
|
+
N2M0Njk5Mzk3ZDliZDliYThkZDU4ZjczNGMyNzQ0NWU3NjA5YTdjMzRmMmZm
|
11
|
+
ZjZjYWZiYjUwZDliNDUxZjQ3ODlkNTFjMWY5MzY0ODVlZjdjZDc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzY5MWMzMDY3MmQyNmFiZDEyY2JlNGYzY2ZiMGE3M2UwZjYyZmZlNzUyZDQ4
|
14
|
+
OGY5ZTVlMGMxMmNiZDZiMzcyZGIxODMwOTg1OWE0NzAyM2Y1ZjZiNWI2ODVl
|
15
|
+
ZmE1YTExZDU3OThhMTMwM2M4ZmI5OTc0MTJhMjRjZjAwYTMxMjI=
|
data/Rakefile
CHANGED
@@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
|
|
17
17
|
gem.name = "natives-catalog"
|
18
18
|
gem.homepage = "http://github.com/teohm/natives-catalog"
|
19
19
|
gem.license = "MIT"
|
20
|
-
gem.summary = %Q{
|
21
|
-
gem.description = %Q{
|
20
|
+
gem.summary = %Q{Maintains a catalog of native library packages required by Ruby gems.}
|
21
|
+
gem.description = %Q{Maintains a catalog of native library packages required by Ruby gems, and a parser to load catalog files. It can be extended to maintain additional catalogs e.g. for other package dependency manager such as npm.}
|
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.3.
|
1
|
+
0.3.4
|
data/natives-catalog.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-catalog 0.3.
|
5
|
+
# stub: natives-catalog 0.3.4 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "natives-catalog"
|
9
|
-
s.version = "0.3.
|
9
|
+
s.version = "0.3.4"
|
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 = "Maintains a catalog of native library packages required by Ruby gems, and a parser to load catalog files. It can be extended to maintain additional catalogs e.g. for other package dependency manager such as npm."
|
15
15
|
s.email = "teohuiming@gmail.com"
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"LICENSE.txt",
|
@@ -50,7 +50,7 @@ Gem::Specification.new do |s|
|
|
50
50
|
s.licenses = ["MIT"]
|
51
51
|
s.require_paths = ["lib"]
|
52
52
|
s.rubygems_version = "2.1.10"
|
53
|
-
s.summary = "
|
53
|
+
s.summary = "Maintains a catalog of native library packages required by Ruby gems."
|
54
54
|
|
55
55
|
if s.respond_to? :specification_version then
|
56
56
|
s.specification_version = 4
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: natives-catalog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Huiming Teo
|
@@ -108,8 +108,9 @@ dependencies:
|
|
108
108
|
- - ! '>='
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
-
description:
|
112
|
-
|
111
|
+
description: Maintains a catalog of native library packages required by Ruby gems,
|
112
|
+
and a parser to load catalog files. It can be extended to maintain additional catalogs
|
113
|
+
e.g. for other package dependency manager such as npm.
|
113
114
|
email: teohuiming@gmail.com
|
114
115
|
executables: []
|
115
116
|
extensions: []
|
@@ -167,5 +168,5 @@ rubyforge_project:
|
|
167
168
|
rubygems_version: 2.1.10
|
168
169
|
signing_key:
|
169
170
|
specification_version: 4
|
170
|
-
summary:
|
171
|
+
summary: Maintains a catalog of native library packages required by Ruby gems.
|
171
172
|
test_files: []
|