-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathshinmun.gemspec
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathshinmun.gemspec
File metadata and controls
50 lines (50 loc) · 1.2 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
50
Gem::Specification.new do |s|
s.name = 'shinmun'
s.version = '1.1.0'
s.summary = 'file based blog engine'
s.author = 'Matthias Georgi'
s.email = 'matti.georgi@gmail.com'
s.homepage = 'http://github.com/georgi/shinmun'
s.description = "file based blog engine."
s.bindir = 'bin'
s.executables << 'shinmun'
s.require_path = 'lib'
s.required_ruby_version = '>= 3.2.0'
s.add_dependency 'kramdown', '~> 2.5'
s.add_dependency 'rubypants'
s.add_dependency 'rack', '>= 1.0'
s.add_dependency 'rouge', '~> 4.0'
s.add_dependency 'kontrol', '>= 0.3.1'
s.add_dependency 'ruby_llm', '~> 1.9'
s.extra_rdoc_files = ['README.md']
s.files = %w{
README.md
LICENSE
Rakefile
Gemfile
public/styles.css
bin/shinmun
config.ru
lib/shinmun.rb
lib/shinmun/blog.rb
lib/shinmun/kramdown_rouge.rb
lib/shinmun/comment.rb
lib/shinmun/helpers.rb
lib/shinmun/post.rb
lib/shinmun/routes.rb
lib/shinmun/ai_assistant.rb
lib/shinmun/exporter.rb
lib/shinmun/typescript_embed.rb
templates/index.rhtml
templates/page.rhtml
templates/404.rhtml
templates/category.rhtml
templates/post.rhtml
templates/index.rxml
templates/archive.rhtml
templates/layout.rhtml
test/blog_spec.rb
test/post_spec.rb
test/ai_assistant_spec.rb
}
end