forked from adamcooke/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation.gemspec
More file actions
30 lines (24 loc) · 1.07 KB
/
documentation.gemspec
File metadata and controls
30 lines (24 loc) · 1.07 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
$:.push File.expand_path("../lib", __FILE__)
require "documentation/version"
Gem::Specification.new do |s|
s.name = "documentation"
s.version = Documentation::VERSION
s.authors = ["Adam Cooke"]
s.email = ["adam@atechmedia.com"]
s.homepage = "http://adamcooke.io"
s.licenses = ['MIT']
s.summary = "A Rails engine to provider the ability to add documentation to a Rails application"
s.description = "It does cool stuff!"
s.files = Dir["{app,config,db,doc,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", ">= 4.0.0", "< 5.0"
s.add_dependency "haml", "~> 4.0"
s.add_dependency "dynamic_form", '~> 1.1', '>= 1.1.4'
s.add_dependency "jquery-rails", ">= 3.0", "< 5"
s.add_dependency "coffee-rails", "~> 4"
s.add_dependency "sass-rails", ">= 4.0", "< 6"
s.add_dependency "uglifier", ">= 2.2", "< 3.0"
s.add_dependency 'redcarpet', '>= 3.1.0', '< 4.0'
s.add_dependency 'nifty-attachments', '>= 1.0.3', "< 2"
s.add_dependency 'nifty-dialog', '~> 1'
s.add_development_dependency 'sqlite3', '~> 1.3'
end