forked from stakr/html_attributes
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhtml_attributes.gemspec
More file actions
26 lines (19 loc) · 1007 Bytes
/
html_attributes.gemspec
File metadata and controls
26 lines (19 loc) · 1007 Bytes
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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/html_attributes/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "html_attributes"
gem.authors = ["Jan Sebastian Siwy", "Martin Spickermann", "Henning Staib"]
gem.email = ["github@henning-staib.de"]
gem.summary = %q{html_attributes provide helper methods to convert arrays
and hashes to valid html attributes.}
gem.description = %q{html_attributes provide helper methods to convert arrays
and hashes to valid html attributes.}
gem.homepage = "https://github.com/serevaris/html_attributes"
gem.files = `git ls-files`.split($\)
gem.require_paths = ["lib"]
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.version = HtmlAttributes::VERSION
gem.platform = Gem::Platform::RUBY
gem.add_dependency "actionview", ">= 4.0", "< 6"
gem.add_development_dependency "rspec"
end