-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnkss-rails.gemspec
30 lines (23 loc) · 982 Bytes
/
nkss-rails.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 'nkss/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'bkss-rails'
s.version = Nkss::VERSION
s.authors = %w(Rico\ Sta.\ Cruz Nadarei,\ Inc. Steven\ Weller)
s.email = %w([email protected])
s.homepage = 'https://github.com/80beans/nkss-rails'
s.summary = 'Create pretty styleguides for your Rails 3.2 projects.'
s.description = 'Nkss-rails is a drop-in, easy-to-use, gorgeous-by-default '\
'Rails plugin you can put into your projects so you can instantly have '\
'cute docs.'
s.files = Dir['{app,config,lib}/**/*'] + ['Rakefile', 'README.md']
s.test_files = Dir["spec/**/*"]
s.add_dependency 'rails', '>= 3.2.0'
s.add_dependency 'kss'
s.add_dependency 'ffaker'
s.add_dependency 'BlueCloth'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sqlite3'
end