-
Notifications
You must be signed in to change notification settings - Fork 1
/
hooch.gemspec
28 lines (24 loc) · 1.34 KB
/
hooch.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hooch/version'
Gem::Specification.new do |spec|
spec.name = "hooch"
spec.version = Hooch::VERSION
spec.authors = ["Eric Draut"]
spec.email = ["[email protected]"]
spec.summary = %q{Tools for building a browser UI. Get the good stuff.}
spec.description = %q{Hooch provides tools for common UI patterns without any dom or css. You build the html and css you want, then add data-attributes to get behavior. Keep behavior independent of look-and-feel and you can build "anything**"(** within reason).}
spec.homepage = "https://github.com/edraut/hooch/wiki"
spec.license = "MIT"
spec.files = Dir['Rakefile', '{app,lib}/**/*', 'README*', 'LICENSE*']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "rails", ">= 4.0.1", "< 6"
spec.add_development_dependency "bundler", "~> 1.7", "< 2"
spec.add_development_dependency "rake", "~> 10.0", "< 12"
spec.add_development_dependency "minitest", "~> 5", "< 6"
spec.add_development_dependency "minitest-rails", "~> 2", "< 3"
spec.add_development_dependency "sqlite3", "~> 1", "< 2"
end