-
Notifications
You must be signed in to change notification settings - Fork 3
/
natives.gemspec
131 lines (126 loc) · 4.64 KB
/
natives.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: natives 0.6.2 ruby lib
Gem::Specification.new do |s|
s.name = "natives"
s.version = "0.6.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Huiming Teo"]
s.date = "2014-01-13"
s.description = "Lookup native package dependencies required by gems on your machine."
s.email = "[email protected]"
s.executables = ["natives"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".document",
".rspec",
".travis.yml",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"Vagrantfile",
"bin/natives",
"catalogs/rubygems.yaml",
"catalogs_test/.gitignore",
"catalogs_test/bin/build_images",
"catalogs_test/bin/install_entry",
"catalogs_test/bin/install_entry_in_docker",
"catalogs_test/bin/list_all",
"catalogs_test/bin/pull_images",
"catalogs_test/bin/run",
"catalogs_test/bin/test_catalog",
"catalogs_test/bin/test_catalog_in_vagrant",
"catalogs_test/bin/test_entry",
"catalogs_test/bin/test_entry_in_vagrant",
"catalogs_test/bin/update",
"catalogs_test/images/debian-7.2/Dockerfile",
"catalogs_test/images/ubuntu-12.10/Dockerfile",
"lib/natives.rb",
"lib/natives/apps.rb",
"lib/natives/apps/detect.rb",
"lib/natives/apps/list.rb",
"lib/natives/catalog.rb",
"lib/natives/catalog/loader.rb",
"lib/natives/catalog/merger.rb",
"lib/natives/catalog/normalizer.rb",
"lib/natives/catalog/selector.rb",
"lib/natives/catalog/validator.rb",
"lib/natives/cli.rb",
"lib/natives/errors.rb",
"lib/natives/gemfile_viewer.rb",
"lib/natives/host_detection.rb",
"lib/natives/host_detection/package_provider.rb",
"lib/natives/host_detection/platform.rb",
"natives.gemspec",
"spec/fixtures/Gemfile.empty",
"spec/fixtures/Gemfile.empty.lock",
"spec/fixtures/Gemfile.no_lockfile",
"spec/fixtures/Gemfile.with_lockfile",
"spec/fixtures/Gemfile.with_lockfile.lock",
"spec/fixtures/dir_with_matching_files/invalid1.yml",
"spec/fixtures/dir_with_matching_files/not_matching.json",
"spec/fixtures/dir_with_matching_files/valid1.yaml",
"spec/fixtures/dir_with_matching_files/valid2.yml",
"spec/fixtures/dir_without_matching_file/not_matching.json",
"spec/natives/apps/detect_spec.rb",
"spec/natives/apps/list_spec.rb",
"spec/natives/catalog/loader_spec.rb",
"spec/natives/catalog/merger_spec.rb",
"spec/natives/catalog/normalizer_spec.rb",
"spec/natives/catalog/selector_spec.rb",
"spec/natives/catalog/validator_spec.rb",
"spec/natives/catalog_spec.rb",
"spec/natives/gemfile_viewer_spec.rb",
"spec/natives/host_detection/package_provider_spec.rb",
"spec/natives/host_detection/platform_spec.rb",
"spec/natives/host_detection_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = "http://github.com/teohm/natives"
s.licenses = ["MIT"]
s.rubygems_version = "2.2.0"
s.summary = "Lookup native packages required by gems."
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<ohai>, [">= 0"])
s.add_runtime_dependency(%q<thor>, [">= 0"])
s.add_runtime_dependency(%q<bundler>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
s.add_development_dependency(%q<rdoc>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<debugger>, [">= 0"])
s.add_development_dependency(%q<simplecov>, [">= 0"])
else
s.add_dependency(%q<ohai>, [">= 0"])
s.add_dependency(%q<thor>, [">= 0"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
s.add_dependency(%q<rdoc>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<debugger>, [">= 0"])
s.add_dependency(%q<simplecov>, [">= 0"])
end
else
s.add_dependency(%q<ohai>, [">= 0"])
s.add_dependency(%q<thor>, [">= 0"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
s.add_dependency(%q<rdoc>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<debugger>, [">= 0"])
s.add_dependency(%q<simplecov>, [">= 0"])
end
end