-
Notifications
You must be signed in to change notification settings - Fork 2
/
natstrap.gemspec
31 lines (26 loc) · 1.12 KB
/
natstrap.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
31
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'natstrap/version'
Gem::Specification.new do |gem|
gem.name = "natstrap"
gem.version = Natstrap::VERSION
gem.authors = ["Nat Welch"]
gem.email = ["[email protected]"]
gem.homepage = "http://github.com/icco/basic"
gem.licenses = ['MIT']
gem.summary = %q{A gem to create a new project for Nat.}
gem.description = %q{A gem to create a new project for Nat. Follows a consistent app template using padrino and bootstrap.}
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency "bundler"
gem.add_runtime_dependency "git"
gem.add_runtime_dependency "fog"
gem.add_runtime_dependency "padrino", "0.11.2"
gem.add_runtime_dependency "rake"
gem.add_runtime_dependency "thor"
gem.add_runtime_dependency "zipruby"
gem.rdoc_options = ['--charset=UTF-8']
end