-
Notifications
You must be signed in to change notification settings - Fork 189
/
wicked.gemspec
27 lines (26 loc) · 1.11 KB
/
wicked.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wicked/version'
Gem::Specification.new do |gem|
gem.name = "wicked"
gem.version = Wicked::VERSION
gem.authors = ["Richard Schneeman"]
gem.email = ["[email protected]"]
gem.description = "Wicked is a Rails engine for producing easy wizard controllers"
gem.summary = "Use Wicked to turn your controller into a wizard"
gem.homepage = "https://github.com/schneems/wicked"
gem.license = "MIT"
gem.extra_rdoc_files = [
"README.md"
]
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_dependency "railties", [">= 3.0.7"]
gem.add_development_dependency "rails", [">= 3.0.7"]
gem.add_development_dependency "capybara", [">= 0"]
gem.add_development_dependency "appraisal"
gem.add_development_dependency "test-unit"
end