forked from jsonform/jsonform
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjsonform-rails.gemspec
22 lines (19 loc) · 981 Bytes
/
jsonform-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jsonform/rails/version'
Gem::Specification.new do |spec|
spec.name = "jsonform-rails"
spec.version = Jsonform::Rails::VERSION
spec.authors = ["Nathaniel Fitzgerald-Hood"]
spec.email = ["[email protected]"]
spec.description = %q{Asset wrapper gem for joshfire's jsonform: Build forms from JSON Schema. Easily template-able. Compatible with Twitter Bootstrap out of the box.}
spec.summary = %q{Build forms from JSON Schema using Javascript}
spec.homepage = "https://github.com/mrthan/jsonform-rails"
spec.license = "MIT"
spec.files = Dir["{lib,vendor}/**/*"] + ["LICENSE", "README.md"]
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "railties", "~> 3.1"
end