octocat 0.0.0
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.
- data/Rakefile +29 -0
- metadata +68 -0
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require "rubygems"
|
2
|
+
require "rubygems/package_task"
|
3
|
+
|
4
|
+
spec = Gem::Specification.new do |s|
|
5
|
+
|
6
|
+
# Change these as appropriate
|
7
|
+
s.name = "octocat"
|
8
|
+
s.version = "0.0.0"
|
9
|
+
s.summary = "Sane Github v3 api"
|
10
|
+
s.author = "halogenandtoast"
|
11
|
+
s.email = "halogenandtoast@gmail.com"
|
12
|
+
s.homepage = "http://github.com/halogenandtoast/octocat"
|
13
|
+
s.has_rdoc = false
|
14
|
+
s.files = %w(Rakefile) + Dir.glob("lib/**/*")
|
15
|
+
s.require_paths = ["lib"]
|
16
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.3")
|
17
|
+
end
|
18
|
+
|
19
|
+
Gem::PackageTask.new(spec) do |pkg|
|
20
|
+
pkg.gem_spec = spec
|
21
|
+
end
|
22
|
+
|
23
|
+
desc "Build the gemspec file #{spec.name}.gemspec"
|
24
|
+
task :gemspec do
|
25
|
+
file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
|
26
|
+
File.open(file, "w") {|f| f << spec.to_ruby }
|
27
|
+
end
|
28
|
+
|
29
|
+
task :package => :gemspec
|
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: octocat
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 31
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 0.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- halogenandtoast
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-11-04 00:00:00 -04:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description:
|
23
|
+
email: halogenandtoast@gmail.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- Rakefile
|
32
|
+
has_rdoc: true
|
33
|
+
homepage: http://github.com/halogenandtoast/octocat
|
34
|
+
licenses: []
|
35
|
+
|
36
|
+
post_install_message:
|
37
|
+
rdoc_options: []
|
38
|
+
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
hash: 9
|
56
|
+
segments:
|
57
|
+
- 1
|
58
|
+
- 3
|
59
|
+
version: "1.3"
|
60
|
+
requirements: []
|
61
|
+
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 1.6.2
|
64
|
+
signing_key:
|
65
|
+
specification_version: 3
|
66
|
+
summary: Sane Github v3 api
|
67
|
+
test_files: []
|
68
|
+
|