jsmestad-sinatra_git 0.0.1 → 0.0.2
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/LICENSE +2 -2
- data/README.rdoc +7 -0
- data/VERSION +1 -1
- data/sinatra_git.gemspec +60 -0
- metadata +4 -3
- data/README.textile +0 -4
data/LICENSE
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c) 2009
|
1
|
+
Copyright (c) 2009 Justin Smestad
|
2
2
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
4
|
a copy of this software and associated documentation files (the
|
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
17
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
18
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
19
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
== Sinatra_Git
|
2
|
+
|
3
|
+
This application is a simple wrapper around GitHub. It returns responses that are included in the octopi ruby wrapper project. This is great to offload github api calls to a lightweight sinatra application.
|
4
|
+
|
5
|
+
== Copyright
|
6
|
+
|
7
|
+
Copyright © 2009 Justin Smestad. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/sinatra_git.gemspec
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{sinatra_git}
|
5
|
+
s.version = "0.0.2"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Justin Smestad"]
|
9
|
+
s.date = %q{2009-07-03}
|
10
|
+
s.email = %q{justin.smestad@gmail.com}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE",
|
13
|
+
"README.rdoc"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".gitignore",
|
17
|
+
"LICENSE",
|
18
|
+
"README.rdoc",
|
19
|
+
"Rakefile",
|
20
|
+
"TODO",
|
21
|
+
"VERSION",
|
22
|
+
"config.ru.example",
|
23
|
+
"lib/sinatra_git.rb",
|
24
|
+
"lib/sinatra_git/app.rb",
|
25
|
+
"lib/sinatra_git/views/commits.haml",
|
26
|
+
"sinatra_git.gemspec",
|
27
|
+
"spec/fixtures.rb",
|
28
|
+
"spec/sinatra_git_spec.rb",
|
29
|
+
"spec/spec_helper.rb"
|
30
|
+
]
|
31
|
+
s.homepage = %q{http://evalcode.com}
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
+
s.require_paths = ["lib"]
|
34
|
+
s.rubygems_version = %q{1.3.4}
|
35
|
+
s.summary = %q{A sinatra app that provides a github wrapper for offloading api calls to github.}
|
36
|
+
s.test_files = [
|
37
|
+
"spec/fixtures.rb",
|
38
|
+
"spec/sinatra_git_spec.rb",
|
39
|
+
"spec/spec_helper.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_runtime_dependency(%q<sinatra>, [">= 0.9.2"])
|
48
|
+
s.add_runtime_dependency(%q<haml>, [">= 0"])
|
49
|
+
s.add_runtime_dependency(%q<octopi>, [">= 0"])
|
50
|
+
else
|
51
|
+
s.add_dependency(%q<sinatra>, [">= 0.9.2"])
|
52
|
+
s.add_dependency(%q<haml>, [">= 0"])
|
53
|
+
s.add_dependency(%q<octopi>, [">= 0"])
|
54
|
+
end
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<sinatra>, [">= 0.9.2"])
|
57
|
+
s.add_dependency(%q<haml>, [">= 0"])
|
58
|
+
s.add_dependency(%q<octopi>, [">= 0"])
|
59
|
+
end
|
60
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsmestad-sinatra_git
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Smestad
|
@@ -50,11 +50,11 @@ extensions: []
|
|
50
50
|
|
51
51
|
extra_rdoc_files:
|
52
52
|
- LICENSE
|
53
|
-
- README.
|
53
|
+
- README.rdoc
|
54
54
|
files:
|
55
55
|
- .gitignore
|
56
56
|
- LICENSE
|
57
|
-
- README.
|
57
|
+
- README.rdoc
|
58
58
|
- Rakefile
|
59
59
|
- TODO
|
60
60
|
- VERSION
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- lib/sinatra_git.rb
|
63
63
|
- lib/sinatra_git/app.rb
|
64
64
|
- lib/sinatra_git/views/commits.haml
|
65
|
+
- sinatra_git.gemspec
|
65
66
|
- spec/fixtures.rb
|
66
67
|
- spec/sinatra_git_spec.rb
|
67
68
|
- spec/spec_helper.rb
|
data/README.textile
DELETED