public
Description: git-based blog engine
Homepage: http://www.matthias-georgi.de/shinmun
Clone URL: git://github.com/georgi/shinmun.git
shinmun / shinmun.gemspec
100644 49 lines (47 sloc) 1.093 kb
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
Gem::Specification.new do |s|
  s.name = 'shinmun'
  s.version = '0.5'
  s.summary = 'git-based blog engine'
  s.author = 'Matthias Georgi'
  s.email = 'matti.georgi@gmail.com'
  s.homepage = 'http://github.com/georgi/shinmun'
  s.description = "git-based blog engine."
  s.bindir = 'bin'
  s.executables << 'shinmun'
  s.require_path = 'lib'
  s.add_dependency 'BlueCloth'
  s.add_dependency 'rubypants'
  s.add_dependency 'rack'
  s.add_dependency 'coderay'
  s.has_rdoc = true
  s.extra_rdoc_files = ['README.md']
  s.files = %w{
README.md
Rakefile
assets/print.css
assets/styles.css
bin/shinmun
config.ru
lib/shinmun.rb
lib/shinmun/blog.rb
lib/shinmun/bluecloth_coderay.rb
lib/shinmun/comment.rb
lib/shinmun/handlers.rb
lib/shinmun/helpers.rb
lib/shinmun/post.rb
lib/shinmun/routes.rb
templates/index.rhtml
templates/page.rhtml
templates/404.rhtml
templates/_comments.rhtml
templates/category.rhtml
templates/_comment_form.rhtml
templates/post.rhtml
templates/index.rxml
templates/category.rxml
templates/archive.rhtml
templates/layout.rhtml
test/blog_spec.rb
test/post_spec.rb
}
end