libdolt 0.6.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.
Files changed (68) hide show
  1. data/Gemfile +3 -0
  2. data/Gemfile.lock +56 -0
  3. data/Rakefile +10 -0
  4. data/Readme.md +99 -0
  5. data/lib/libdolt/async/when.rb +128 -0
  6. data/lib/libdolt/disk_repo_resolver.rb +39 -0
  7. data/lib/libdolt/git/blame.rb +112 -0
  8. data/lib/libdolt/git/commit.rb +73 -0
  9. data/lib/libdolt/git/repository.rb +139 -0
  10. data/lib/libdolt/git/submodule.rb +35 -0
  11. data/lib/libdolt/git/tree.rb +42 -0
  12. data/lib/libdolt/repo_actions.rb +95 -0
  13. data/lib/libdolt/version.rb +21 -0
  14. data/lib/libdolt/view/binary_blob_embedder.rb +41 -0
  15. data/lib/libdolt/view/blame.rb +57 -0
  16. data/lib/libdolt/view/blob.rb +97 -0
  17. data/lib/libdolt/view/breadcrumb.rb +47 -0
  18. data/lib/libdolt/view/commit.rb +27 -0
  19. data/lib/libdolt/view/gravatar.rb +29 -0
  20. data/lib/libdolt/view/markup.rb +44 -0
  21. data/lib/libdolt/view/multi_repository.rb +27 -0
  22. data/lib/libdolt/view/object.rb +44 -0
  23. data/lib/libdolt/view/single_repository.rb +27 -0
  24. data/lib/libdolt/view/smart_blob_renderer.rb +33 -0
  25. data/lib/libdolt/view/syntax_highlight.rb +40 -0
  26. data/lib/libdolt/view/tab_width.rb +30 -0
  27. data/lib/libdolt/view/tree.rb +100 -0
  28. data/lib/libdolt/view.rb +23 -0
  29. data/lib/libdolt.rb +29 -0
  30. data/libdolt.gemspec +35 -0
  31. data/test/libdolt/async/when_test.rb +112 -0
  32. data/test/libdolt/git/blame_test.rb +128 -0
  33. data/test/libdolt/git/commit_test.rb +89 -0
  34. data/test/libdolt/git/repository_test.rb +186 -0
  35. data/test/libdolt/repo_actions_test.rb +236 -0
  36. data/test/libdolt/templates/blame_test.rb +54 -0
  37. data/test/libdolt/templates/blob_test.rb +116 -0
  38. data/test/libdolt/templates/commits_test.rb +59 -0
  39. data/test/libdolt/templates/raw_test.rb +39 -0
  40. data/test/libdolt/templates/refs_test.rb +36 -0
  41. data/test/libdolt/templates/tree_history_test.rb +91 -0
  42. data/test/libdolt/templates/tree_test.rb +63 -0
  43. data/test/libdolt/view/binary_blob_embedder_test.rb +49 -0
  44. data/test/libdolt/view/blame_test.rb +122 -0
  45. data/test/libdolt/view/blob_test.rb +116 -0
  46. data/test/libdolt/view/breadcrumb_test.rb +46 -0
  47. data/test/libdolt/view/commit_test.rb +31 -0
  48. data/test/libdolt/view/gravatar_test.rb +30 -0
  49. data/test/libdolt/view/markup_test.rb +70 -0
  50. data/test/libdolt/view/multi_repository_test.rb +35 -0
  51. data/test/libdolt/view/object_test.rb +83 -0
  52. data/test/libdolt/view/single_repository_test.rb +30 -0
  53. data/test/libdolt/view/smart_blob_renderer_test.rb +38 -0
  54. data/test/libdolt/view/syntax_highlight_test.rb +80 -0
  55. data/test/libdolt/view/tab_width_test.rb +40 -0
  56. data/test/libdolt/view/tree_test.rb +196 -0
  57. data/test/test_helper.rb +50 -0
  58. data/views/500.erb +22 -0
  59. data/views/blame.erb +42 -0
  60. data/views/blob.erb +31 -0
  61. data/views/commits.erb +26 -0
  62. data/views/index.erb +25 -0
  63. data/views/layout.erb +45 -0
  64. data/views/raw.erb +19 -0
  65. data/views/refs.erb +22 -0
  66. data/views/tree.erb +50 -0
  67. data/views/tree_history.erb +19 -0
  68. metadata +326 -0
data/views/commits.erb ADDED
@@ -0,0 +1,26 @@
1
+ <% @title = "History of #{path}" %>
2
+ <div class="gts-browser">
3
+ <div id="gts-ref-selector-ph"></div>
4
+ <ul class="pull-right gts-blob-view">
5
+ <li><a href="<%= blob_url(repository, ref, path) %>">Blob content</a></li>
6
+ <li><a href="<%= blame_url(repository, ref, path) %>">Blame</a></li>
7
+ <li class="active">History</li>
8
+ <li><a href="<%= raw_url(repository, ref, path) %>">Raw blob</a></li>
9
+ </ul>
10
+ <%= breadcrumb(repository, ref, path) %>
11
+ <% commits.each do |commit| %>
12
+ <div class="gts-commit">
13
+ <p class="gts-log-message">
14
+ <span class="gts-commit-oid"><%= commit_oid(commit[:oid]) %></span>:
15
+ <%= commit[:summary] %>
16
+ </p>
17
+ <p>
18
+ <a class="event-author" href="/~">
19
+ <img width="24" height="24" src="<%= gravatar(commit[:author][:email]) %>" alt="avatar" class="gts-avatar">
20
+ <%= commit[:author][:name] %>
21
+ </a>
22
+ <span class="event-time"><%= commit[:date].strftime("%H:%M") %></span>
23
+ </p>
24
+ </div>
25
+ <% end %>
26
+ </div>
data/views/index.erb ADDED
@@ -0,0 +1,25 @@
1
+ <%#
2
+ # encoding: utf-8
3
+ #--
4
+ # Copyright (C) 2012 Gitorious AS
5
+ #
6
+ # This program is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Affero General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Affero General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Affero General Public License
17
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ #++
19
+ %>
20
+ <h1><%= @title = "All repositories" %></h1>
21
+ <ul>
22
+ <% repositories.each do |repo| %>
23
+ <li><a href="/<%= repo %>/tree/master:"><%= repo %></a></li>
24
+ <% end %>
25
+ </ul>
data/views/layout.erb ADDED
@@ -0,0 +1,45 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title><%= @title %></title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link href="/css/gitorious.css" rel="stylesheet">
8
+ <link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
9
+ <link href="/lib/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
10
+ </head>
11
+ <body>
12
+ <div class="gts-masthead navbar">
13
+ <div class="navbar-inner">
14
+ <div class="container">
15
+ <a class="gts-logo" href="/"><img src="/images/gitorious.png" alt="Gitorious" title="Gitorious"></a>
16
+ </div>
17
+ </div>
18
+ </div>
19
+ <br><br>
20
+ <div class="container">
21
+ <%= yield %>
22
+ </div>
23
+ <div class="footer">
24
+ <div class="container">
25
+ <p class="pull-right gts-powered-by">
26
+ <a href="http://gitorious.org">
27
+ <img alt="Powered by Gitorious" src="/images/powered-by.png" title="Powered by Gitorious">
28
+ </a>
29
+ </p>
30
+ <p>
31
+ Dolt is part of <a href="http://gitorious.org">Gitorious</a>. Dolt
32
+ (like Gitorious) is free software licensed under
33
+ the <a href="http://www.gnu.org/licenses/agpl-3.0.html">GNU Affero
34
+ General Public License (AGPL)</a> unless noted otherwise.
35
+ </p>
36
+ </div>
37
+ </div>
38
+ <script src="/dist/gts-ui-deps.js"></script>
39
+ <script src="/js/components/abbrev.js"></script>
40
+ <script src="/js/components/url.js"></script>
41
+ <script src="/js/components/ref-selector.js"></script>
42
+ <script src="/js/components/tree-history.js"></script>
43
+ <script src="/js/gitorious.js"></script>
44
+ </body>
45
+ </html>
data/views/raw.erb ADDED
@@ -0,0 +1,19 @@
1
+ <%#
2
+ # encoding: utf-8
3
+ #--
4
+ # Copyright (C) 2012 Gitorious AS
5
+ #
6
+ # This program is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Affero General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Affero General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Affero General Public License
17
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ #++
19
+ %><%= blob.content %>
data/views/refs.erb ADDED
@@ -0,0 +1,22 @@
1
+ <%#
2
+ # encoding: utf-8
3
+ #--
4
+ # Copyright (C) 2012 Gitorious AS
5
+ #
6
+ # This program is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Affero General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Affero General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Affero General Public License
17
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ #++
19
+ %>{
20
+ "heads": [<%= heads.map { |n| "\"#{n}\"" }.join(",") %>],
21
+ "tags": [<%= tags.map { |n| "\"#{n}\"" }.join(",") %>]
22
+ }
data/views/tree.erb ADDED
@@ -0,0 +1,50 @@
1
+ <%#
2
+ # encoding: utf-8
3
+ #--
4
+ # Copyright (C) 2012 Gitorious AS
5
+ #
6
+ # This program is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Affero General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Affero General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Affero General Public License
17
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ #++
19
+ %>
20
+ <%
21
+ @title = "#{path == '' ? './' : path} in #{ref}"
22
+ levels = accumulate_path(partition_path(path, respond_to?(:maxdepth) ? maxdepth : nil))
23
+ %>
24
+ <div id="gts-ref-selector-ph"></div>
25
+ <table class="table table-striped gts-tree-explorer" data-gts-tree-history="<%= tree_history_url(repository, ref, path) %>">
26
+ <thead>
27
+ <tr>
28
+ <th colspan="<%= tree_table_padding_width(levels) + 1 %>">File</th>
29
+ <th class="gts-col-changed">Changed</th>
30
+ <th class="gts-col-commit" colspan="2">Last commit</th>
31
+ </tr>
32
+ </thead>
33
+ <tbody>
34
+ <%= tree_context(repository, ref, levels) %>
35
+ <% tree_entries(tree).each do |object| %>
36
+ <tr>
37
+ <%= tree_table_padding_td(levels) %>
38
+ <td class="gts-name">
39
+ <a href="<%= object_url(repository, ref, path, object) %>">
40
+ <i class="icon <%= object_icon_class(object) %>"></i>
41
+ <%= object[:name] %>
42
+ </a>
43
+ </td>
44
+ <td class="gts-commit-date"></td>
45
+ <td class="gts-commit-oid"></td>
46
+ <td></td>
47
+ </tr>
48
+ <% end %>
49
+ </tbody>
50
+ </table>
@@ -0,0 +1,19 @@
1
+ <%#
2
+ # encoding: utf-8
3
+ #--
4
+ # Copyright (C) 2012 Gitorious AS
5
+ #
6
+ # This program is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Affero General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Affero General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Affero General Public License
17
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ #++
19
+ %><%= JSON.generate(tree) %>
metadata ADDED
@@ -0,0 +1,326 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libdolt
3
+ version: !ruby/object:Gem::Version
4
+ hash: 7
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 6
9
+ - 0
10
+ version: 0.6.0
11
+ platform: ruby
12
+ authors:
13
+ - Christian Johansen
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-10-05 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: eventmachine
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 15
30
+ segments:
31
+ - 1
32
+ - 0
33
+ version: "1.0"
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: em_pessimistic
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 9
45
+ segments:
46
+ - 0
47
+ - 1
48
+ version: "0.1"
49
+ type: :runtime
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: em_rugged
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ~>
58
+ - !ruby/object:Gem::Version
59
+ hash: 31
60
+ segments:
61
+ - 0
62
+ - 1
63
+ - 2
64
+ version: 0.1.2
65
+ type: :runtime
66
+ version_requirements: *id003
67
+ - !ruby/object:Gem::Dependency
68
+ name: tzinfo
69
+ prerelease: false
70
+ requirement: &id004 !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ hash: 13
76
+ segments:
77
+ - 0
78
+ - 3
79
+ version: "0.3"
80
+ type: :runtime
81
+ version_requirements: *id004
82
+ - !ruby/object:Gem::Dependency
83
+ name: makeup
84
+ prerelease: false
85
+ requirement: &id005 !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ hash: 3
91
+ segments:
92
+ - 0
93
+ version: "0"
94
+ type: :runtime
95
+ version_requirements: *id005
96
+ - !ruby/object:Gem::Dependency
97
+ name: htmlentities
98
+ prerelease: false
99
+ requirement: &id006 !ruby/object:Gem::Requirement
100
+ none: false
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ hash: 29
105
+ segments:
106
+ - 4
107
+ - 3
108
+ version: "4.3"
109
+ type: :runtime
110
+ version_requirements: *id006
111
+ - !ruby/object:Gem::Dependency
112
+ name: json
113
+ prerelease: false
114
+ requirement: &id007 !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - ~>
118
+ - !ruby/object:Gem::Version
119
+ hash: 1
120
+ segments:
121
+ - 1
122
+ - 7
123
+ version: "1.7"
124
+ type: :runtime
125
+ version_requirements: *id007
126
+ - !ruby/object:Gem::Dependency
127
+ name: mime-types
128
+ prerelease: false
129
+ requirement: &id008 !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ~>
133
+ - !ruby/object:Gem::Version
134
+ hash: 41
135
+ segments:
136
+ - 1
137
+ - 19
138
+ version: "1.19"
139
+ type: :runtime
140
+ version_requirements: *id008
141
+ - !ruby/object:Gem::Dependency
142
+ name: minitest
143
+ prerelease: false
144
+ requirement: &id009 !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ hash: 3
150
+ segments:
151
+ - 2
152
+ - 0
153
+ version: "2.0"
154
+ type: :development
155
+ version_requirements: *id009
156
+ - !ruby/object:Gem::Dependency
157
+ name: em-minitest-spec
158
+ prerelease: false
159
+ requirement: &id010 !ruby/object:Gem::Requirement
160
+ none: false
161
+ requirements:
162
+ - - ~>
163
+ - !ruby/object:Gem::Version
164
+ hash: 13
165
+ segments:
166
+ - 1
167
+ - 1
168
+ version: "1.1"
169
+ type: :development
170
+ version_requirements: *id010
171
+ - !ruby/object:Gem::Dependency
172
+ name: rake
173
+ prerelease: false
174
+ requirement: &id011 !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ~>
178
+ - !ruby/object:Gem::Version
179
+ hash: 25
180
+ segments:
181
+ - 0
182
+ - 9
183
+ version: "0.9"
184
+ type: :development
185
+ version_requirements: *id011
186
+ - !ruby/object:Gem::Dependency
187
+ name: redcarpet
188
+ prerelease: false
189
+ requirement: &id012 !ruby/object:Gem::Requirement
190
+ none: false
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ hash: 3
195
+ segments:
196
+ - 0
197
+ version: "0"
198
+ type: :development
199
+ version_requirements: *id012
200
+ - !ruby/object:Gem::Dependency
201
+ name: tiltout
202
+ prerelease: false
203
+ requirement: &id013 !ruby/object:Gem::Requirement
204
+ none: false
205
+ requirements:
206
+ - - ~>
207
+ - !ruby/object:Gem::Version
208
+ hash: 1
209
+ segments:
210
+ - 1
211
+ version: "1"
212
+ type: :development
213
+ version_requirements: *id013
214
+ description: Dolt API for serving git trees and syntax highlighted blobs
215
+ email:
216
+ - christian@gitorious.org
217
+ executables: []
218
+
219
+ extensions: []
220
+
221
+ extra_rdoc_files: []
222
+
223
+ files:
224
+ - Gemfile
225
+ - Gemfile.lock
226
+ - Rakefile
227
+ - Readme.md
228
+ - lib/libdolt.rb
229
+ - lib/libdolt/async/when.rb
230
+ - lib/libdolt/disk_repo_resolver.rb
231
+ - lib/libdolt/git/blame.rb
232
+ - lib/libdolt/git/commit.rb
233
+ - lib/libdolt/git/repository.rb
234
+ - lib/libdolt/git/submodule.rb
235
+ - lib/libdolt/git/tree.rb
236
+ - lib/libdolt/repo_actions.rb
237
+ - lib/libdolt/version.rb
238
+ - lib/libdolt/view.rb
239
+ - lib/libdolt/view/binary_blob_embedder.rb
240
+ - lib/libdolt/view/blame.rb
241
+ - lib/libdolt/view/blob.rb
242
+ - lib/libdolt/view/breadcrumb.rb
243
+ - lib/libdolt/view/commit.rb
244
+ - lib/libdolt/view/gravatar.rb
245
+ - lib/libdolt/view/markup.rb
246
+ - lib/libdolt/view/multi_repository.rb
247
+ - lib/libdolt/view/object.rb
248
+ - lib/libdolt/view/single_repository.rb
249
+ - lib/libdolt/view/smart_blob_renderer.rb
250
+ - lib/libdolt/view/syntax_highlight.rb
251
+ - lib/libdolt/view/tab_width.rb
252
+ - lib/libdolt/view/tree.rb
253
+ - libdolt.gemspec
254
+ - test/libdolt/async/when_test.rb
255
+ - test/libdolt/git/blame_test.rb
256
+ - test/libdolt/git/commit_test.rb
257
+ - test/libdolt/git/repository_test.rb
258
+ - test/libdolt/repo_actions_test.rb
259
+ - test/libdolt/templates/blame_test.rb
260
+ - test/libdolt/templates/blob_test.rb
261
+ - test/libdolt/templates/commits_test.rb
262
+ - test/libdolt/templates/raw_test.rb
263
+ - test/libdolt/templates/refs_test.rb
264
+ - test/libdolt/templates/tree_history_test.rb
265
+ - test/libdolt/templates/tree_test.rb
266
+ - test/libdolt/view/binary_blob_embedder_test.rb
267
+ - test/libdolt/view/blame_test.rb
268
+ - test/libdolt/view/blob_test.rb
269
+ - test/libdolt/view/breadcrumb_test.rb
270
+ - test/libdolt/view/commit_test.rb
271
+ - test/libdolt/view/gravatar_test.rb
272
+ - test/libdolt/view/markup_test.rb
273
+ - test/libdolt/view/multi_repository_test.rb
274
+ - test/libdolt/view/object_test.rb
275
+ - test/libdolt/view/single_repository_test.rb
276
+ - test/libdolt/view/smart_blob_renderer_test.rb
277
+ - test/libdolt/view/syntax_highlight_test.rb
278
+ - test/libdolt/view/tab_width_test.rb
279
+ - test/libdolt/view/tree_test.rb
280
+ - test/test_helper.rb
281
+ - views/500.erb
282
+ - views/blame.erb
283
+ - views/blob.erb
284
+ - views/commits.erb
285
+ - views/index.erb
286
+ - views/layout.erb
287
+ - views/raw.erb
288
+ - views/refs.erb
289
+ - views/tree.erb
290
+ - views/tree_history.erb
291
+ has_rdoc: true
292
+ homepage: http://gitorious.org/gitorious/libdolt
293
+ licenses: []
294
+
295
+ post_install_message:
296
+ rdoc_options: []
297
+
298
+ require_paths:
299
+ - lib
300
+ required_ruby_version: !ruby/object:Gem::Requirement
301
+ none: false
302
+ requirements:
303
+ - - ">="
304
+ - !ruby/object:Gem::Version
305
+ hash: 3
306
+ segments:
307
+ - 0
308
+ version: "0"
309
+ required_rubygems_version: !ruby/object:Gem::Requirement
310
+ none: false
311
+ requirements:
312
+ - - ">="
313
+ - !ruby/object:Gem::Version
314
+ hash: 3
315
+ segments:
316
+ - 0
317
+ version: "0"
318
+ requirements: []
319
+
320
+ rubyforge_project: libdolt
321
+ rubygems_version: 1.4.2
322
+ signing_key:
323
+ specification_version: 3
324
+ summary: Dolt API for serving git trees and syntax highlighted blobs
325
+ test_files: []
326
+