forked from chiefpansancolt/devise_materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevise_materialize.gemspec
More file actions
29 lines (23 loc) · 1.1 KB
/
devise_materialize.gemspec
File metadata and controls
29 lines (23 loc) · 1.1 KB
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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "devise_materialize/version"
Gem::Specification.new do |spec|
spec.name = "devise_materialize"
spec.version = DeviseMaterialize::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Christopher Pezza"]
spec.email = ["pezza.chris@gmail.com"]
spec.summary = "Generator for Materialize styled Devise Views"
spec.description = "This Gem provides a generator for Materialize styled " \
"Devise Views in HAML, SLIM, and ERB format with " \
"standard Form or simple form functionality"
spec.homepage = "https://github.com/techgurupezza/devise_materialize"
spec.license = "MIT"
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- test/*`.split("\n")
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.2"
spec.required_rubygems_version = "> 1.3.1"
spec.add_dependency("railties", ">= 4.1.0", "< 5.3")
end