-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowboat.gemspec
31 lines (25 loc) · 1 KB
/
showboat.gemspec
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "showboat/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "showboat"
s.version = Showboat::VERSION
s.authors = ["Mode Set"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/modeset/showboat"
s.summary = "Presentation master slides for Mode Set, built on top of Reveal.js."
s.description = "Presentation master slides for Mode Set, built on top of Reveal.js."
s.files = Dir["{app,config,db,lib,vendor}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails"
s.add_dependency "haml-rails", "~> 0.3.2"
s.add_dependency "sass-rails"
s.add_dependency "bourbon"
s.add_dependency "modicon"
s.add_dependency "coffee-rails"
s.add_dependency "underscore-rails"
s.add_dependency "redcarpet"
# Used by the dummy application
s.add_development_dependency "sqlite3"
end