ginatra 2.2.5 → 2.2.6

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.
@@ -0,0 +1,6 @@
1
+ ---
2
+ rvm:
3
+ - 1.8.7
4
+ script: "bundle exec rake spec"
5
+ before_script:
6
+ - "bundle exec rake repo"
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Ginatra
2
2
  [![](http://stillmaintained.com/lenary/ginatra.png)](http://stillmaintained.com/lenary/ginatra)
3
3
 
4
+ [![](http://travis-ci.org/lenary/ginatra.png)](http://travis-ci.org/lenary/ginatra)
5
+
4
6
 
5
7
  This project is to make a clone of gitweb in Ruby and Sinatra. It serves git
6
8
  repositories out of a set of specified directories using an array of glob-based
@@ -34,15 +36,15 @@ Next, just do the following (your setup may require sudo):
34
36
 
35
37
  This pulls down most of the required dependencies too.
36
38
 
37
- The last dependency you need is pygments, an awesome python syntax highlighter.
39
+ The last dependency you need is pygments, an awesome python syntax highlighter.
38
40
  To check whether you have it, run:
39
41
 
40
42
  $ which pygmentize
41
43
 
42
- If this returns a path pointing to a 'pygmentize' binary, then you're all set.
44
+ If this returns a path pointing to a 'pygmentize' binary, then you're all set.
43
45
  If not you'll need to install pygments. Look at the last section of the
44
- [jekyll wiki "install" page](http://wiki.github.com/mojombo/jekyll/install)
45
- to see how to install it. Also make sure again that the `pygmentize` binary
46
+ [jekyll wiki "install" page](http://wiki.github.com/mojombo/jekyll/install)
47
+ to see how to install it. Also make sure again that the `pygmentize` binary
46
48
  is on your path.
47
49
 
48
50
  If you want to play around with the code, you can clone the repository. This also allows you
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ginatra"
3
- s.version = "2.2.5"
3
+ s.version = "2.2.6"
4
4
  s.summary = "A Gitweb Clone in Sinatra and Grit"
5
5
  s.description = "Host your own git repository browser through the power of Sinatra and Grit"
6
6
  s.email = "sam@lenary.co.uk"
@@ -10,6 +10,9 @@ Gem::Specification.new do |s|
10
10
  s.add_dependency('sinatra', '~> 1.2.6')
11
11
  s.add_dependency('grit', '~> 2.4.1')
12
12
  s.add_dependency('vegas', '~> 0.1.8')
13
+ s.add_dependency('builder', '~> 3.0.0')
14
+ s.add_dependency('erubis', '~> 2.7.0')
15
+
13
16
 
14
17
  s.files = `git ls-files`.split("\n")
15
18
  s.test_files = `git ls-files -- spec`.split("\n")
@@ -1,4 +1,5 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
2
+ require "grit"
2
3
 
3
4
  describe "Ginatra" do
4
5
  describe "Repo" do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ginatra
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 2
8
8
  - 2
9
- - 5
10
- version: 2.2.5
9
+ - 6
10
+ version: 2.2.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sam Elliott
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-07-01 00:00:00 +01:00
19
+ date: 2011-07-02 00:00:00 +01:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -83,6 +83,38 @@ dependencies:
83
83
  version: 0.1.8
84
84
  type: :runtime
85
85
  version_requirements: *id004
86
+ - !ruby/object:Gem::Dependency
87
+ name: builder
88
+ prerelease: false
89
+ requirement: &id005 !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ~>
93
+ - !ruby/object:Gem::Version
94
+ hash: 7
95
+ segments:
96
+ - 3
97
+ - 0
98
+ - 0
99
+ version: 3.0.0
100
+ type: :runtime
101
+ version_requirements: *id005
102
+ - !ruby/object:Gem::Dependency
103
+ name: erubis
104
+ prerelease: false
105
+ requirement: &id006 !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ hash: 19
111
+ segments:
112
+ - 2
113
+ - 7
114
+ - 0
115
+ version: 2.7.0
116
+ type: :runtime
117
+ version_requirements: *id006
86
118
  description: Host your own git repository browser through the power of Sinatra and Grit
87
119
  email: sam@lenary.co.uk
88
120
  executables:
@@ -96,6 +128,7 @@ extra_rdoc_files: []
96
128
 
97
129
  files:
98
130
  - .gitignore
131
+ - .travis.yml
99
132
  - Gemfile
100
133
  - README.md
101
134
  - Rakefile