-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbmf.gemspec
More file actions
27 lines (24 loc) · 890 Bytes
/
bmf.gemspec
File metadata and controls
27 lines (24 loc) · 890 Bytes
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
Gem::Specification.new do |s|
s.name = 'bmf'
s.version = '0.2.2'
s.date = '2013-08-04'
s.summary = "BitMessageForum!"
s.description = "Browse bitmessages in a forum-like environment."
s.authors = ["Grant T. Olson"]
s.email = 'kgo@grant-olson.net'
s.files = ["lib/bmf.rb"]
s.files += Dir.glob("lib/bmf/lib/*.rb")
s.files += Dir.glob("lib/bmf/views/*.haml")
s.files += Dir.glob("lib/bmf/public/**/*")
s.files += Dir.glob("config/settings.yml.sample")
s.executables << "bmf"
s.homepage =
'https://github.com/grant-olson/BitMessageForum'
s.license = 'BSD'
s.add_dependency "thin", "~> 1.5.1"
s.add_dependency "sinatra", "~> 1.4.3"
s.add_dependency "sinatra-contrib", "~> 1.4.0"
s.add_dependency "haml", "~> 4.0.3"
s.add_dependency "sanitize", "~> 2.0.6"
s.add_dependency "rdiscount", "~> 2.1.6"
end