-
Notifications
You must be signed in to change notification settings - Fork 0
/
schoolgirl_uniform.gemspec
42 lines (36 loc) · 1.75 KB
/
schoolgirl_uniform.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
32
33
34
35
36
37
38
39
40
41
42
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'schoolgirl_uniform/version'
Gem::Specification.new do |spec|
spec.name = "schoolgirl_uniform"
spec.version = SchoolgirlUniform::VERSION
spec.authors = ["YaroslavO"]
spec.email = ["[email protected]"]
spec.summary = %q{Multistep form for Rails apps.}
spec.description = %q{Multistep form concept for Rails projects.
Allows to create complex forms for a few models simultaneously.
Supports selectable per step validations without data persistence into db.}
spec.homepage = "https://github.com/vergilet/schoolgirl_uniform"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["homepage_uri"] = spec.homepage
# spec.metadata["source_code_uri"] = "Put your gem's public repo URL here."
# spec.metadata["changelog_uri"] = "Put your gem's CHANGELOG.md URL here."
else
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
end
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'activemodel', '~> 6.0'
spec.add_dependency "bundler", '~> 2.0'
spec.add_dependency "rake", '~> 13.0'
spec.add_dependency "rspec", '~> 3.5'
spec.add_dependency "virtus", '~> 2.0'
end