-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithub-downloads.gemspec
More file actions
56 lines (52 loc) · 2.49 KB
/
github-downloads.gemspec
File metadata and controls
56 lines (52 loc) · 2.49 KB
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "github-downloads"
s.version = "0.1.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Luke Redpath"]
s.date = "2012-03-26"
s.email = "luke@lukeredpath.co.uk"
s.executables = ["github-downloads"]
s.files = ["Gemfile", "Gemfile.lock", "Rakefile", "README.md", "bin/github-downloads", "spec/fixtures", "spec/fixtures/textfile.txt", "spec/github_client_spec.rb", "spec/github_download_spec.rb", "spec/spec_helper.rb", "lib/github", "lib/github/client.rb", "lib/github/downloads.rb", "lib/github/downloads_controller.rb", "lib/github/s3_uploader.rb", "lib/github.rb"]
s.homepage = "http://lukeredpath.co.uk"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.11"
s.summary = "Manages downloads for your Github projects"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rest-client>, [">= 0"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_runtime_dependency(%q<simpleconsole>, [">= 0"])
s.add_runtime_dependency(%q<hirb>, [">= 0"])
s.add_runtime_dependency(%q<mime-types>, [">= 0"])
s.add_runtime_dependency(%q<highline>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<mocha>, [">= 0"])
s.add_development_dependency(%q<mimic>, [">= 0"])
s.add_development_dependency(%q<awesome_print>, [">= 0"])
else
s.add_dependency(%q<rest-client>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<simpleconsole>, [">= 0"])
s.add_dependency(%q<hirb>, [">= 0"])
s.add_dependency(%q<mime-types>, [">= 0"])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<mocha>, [">= 0"])
s.add_dependency(%q<mimic>, [">= 0"])
s.add_dependency(%q<awesome_print>, [">= 0"])
end
else
s.add_dependency(%q<rest-client>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<simpleconsole>, [">= 0"])
s.add_dependency(%q<hirb>, [">= 0"])
s.add_dependency(%q<mime-types>, [">= 0"])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<mocha>, [">= 0"])
s.add_dependency(%q<mimic>, [">= 0"])
s.add_dependency(%q<awesome_print>, [">= 0"])
end
end