forked from fcoury/octopi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
octopi.gemspec
105 lines (101 loc) · 3.11 KB
/
octopi.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
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{octopi}
s.version = "0.2.8"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Felipe Coury"]
s.date = %q{2010-01-18}
s.email = %q{felipe.coury@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
".yardoc",
"CHANGELOG.md",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"contrib/backup.rb",
"lib/ext/string_ext.rb",
"lib/octopi.rb",
"lib/octopi/api.rb",
"lib/octopi/base.rb",
"lib/octopi/blob.rb",
"lib/octopi/branch.rb",
"lib/octopi/branch_set.rb",
"lib/octopi/comment.rb",
"lib/octopi/commit.rb",
"lib/octopi/error.rb",
"lib/octopi/file_object.rb",
"lib/octopi/gist.rb",
"lib/octopi/issue.rb",
"lib/octopi/issue_comment.rb",
"lib/octopi/issue_set.rb",
"lib/octopi/key.rb",
"lib/octopi/key_set.rb",
"lib/octopi/plan.rb",
"lib/octopi/repository.rb",
"lib/octopi/repository_set.rb",
"lib/octopi/resource.rb",
"lib/octopi/self.rb",
"lib/octopi/tag.rb",
"lib/octopi/user.rb",
"octopi.gemspec"
]
s.homepage = %q{http://github.com/fcoury/octopi}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{octopi}
s.rubygems_version = %q{1.3.5}
s.summary = %q{A Ruby interface to GitHub API v2}
s.test_files = [
"test/api_test.rb",
"test/authenticated_test.rb",
"test/base_test.rb",
"test/blob_test.rb",
"test/branch_test.rb",
"test/commit_test.rb",
"test/file_object_test.rb",
"test/gist_test.rb",
"test/issue_comment.rb",
"test/issue_set_test.rb",
"test/issue_test.rb",
"test/key_set_test.rb",
"test/key_test.rb",
"test/repository_set_test.rb",
"test/repository_test.rb",
"test/stubs/commits/fcoury/octopi/octopi.rb",
"test/tag_test.rb",
"test/test_helper.rb",
"test/user_test.rb",
"examples/authenticated.rb",
"examples/issues.rb",
"examples/overall.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<nokogiri>, [">= 1.3.1"])
s.add_runtime_dependency(%q<httparty>, [">= 0.4.5"])
s.add_runtime_dependency(%q<mechanize>, [">= 0.9.3"])
s.add_runtime_dependency(%q<api_cache>, [">= 0"])
else
s.add_dependency(%q<nokogiri>, [">= 1.3.1"])
s.add_dependency(%q<httparty>, [">= 0.4.5"])
s.add_dependency(%q<mechanize>, [">= 0.9.3"])
s.add_dependency(%q<api_cache>, [">= 0"])
end
else
s.add_dependency(%q<nokogiri>, [">= 1.3.1"])
s.add_dependency(%q<httparty>, [">= 0.4.5"])
s.add_dependency(%q<mechanize>, [">= 0.9.3"])
s.add_dependency(%q<api_cache>, [">= 0"])
end
end