forked from jamesfwz/materialize-form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
materialize-form.gemspec
23 lines (20 loc) · 1.03 KB
/
materialize-form.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'materialize/form/version'
Gem::Specification.new do |spec|
spec.name = "materialize-form"
spec.version = Materialize::Form::VERSION
spec.authors = ["James La"]
spec.email = ["[email protected]"]
spec.license = "MIT"
spec.summary = "Materialize - SimpleForm Generator."
spec.description = "This gem includes a generator for SimpleForm configuration with Materialize. It also includes custom inputs for materialize."
spec.homepage = "http://materialize-form.herokuapp.com/users/new"
spec.files = Dir["MIT-LICENSE", "README.md", "lib/**/*", "app/**/*", "bin/**/*", "config/**/*"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", '~> 1.12', '>= 1.12.5'
spec.add_development_dependency "rake", '~> 11.1', '>= 11.1.2'
end