-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremove_data_attributes.gemspec
More file actions
27 lines (22 loc) · 1 KB
/
remove_data_attributes.gemspec
File metadata and controls
27 lines (22 loc) · 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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "remove_data_attributes/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "remove_data_attributes"
s.version = RemoveDataAttributes::VERSION
s.authors = ["yasaichi"]
s.email = ["yasaichi@users.noreply.github.com"]
s.homepage = "https://github.com/yasaichi/remove_data_attributes"
s.summary = "Rails plugin for removing data attributes from views"
s.description = "Rails plugin enables you to remove data attributes automatically from views."
s.license = "MIT"
s.files = Dir["CHANGELOG.md", "lib/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "railties", ">= 4.0.0"
s.add_development_dependency "ammeter"
s.add_development_dependency "appraisal"
s.add_development_dependency "reek"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "rubocop"
s.add_development_dependency "simplecov"
end