-
Notifications
You must be signed in to change notification settings - Fork 2
/
human_attributes.gemspec
36 lines (31 loc) · 1.41 KB
/
human_attributes.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem"s version:
require "human_attributes/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "human_attributes"
s.version = HumanAttributes::VERSION
s.authors = ["Platanus", "Leandro Segovia"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/platanus/human_attributes"
s.summary = "Gem to generate human readable ActiveRecord attributes"
s.description = "Gem to convert ActiveRecord attributes and methods to human readable attributes"
s.license = "MIT"
s.files = `git ls-files`.split($/).reject { |fn| fn.start_with? "spec" }
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.test_files = Dir["spec/**/*"]
s.add_dependency "factory_bot"
s.add_dependency "rails", ">= 4.2.0"
s.add_development_dependency "coveralls"
s.add_development_dependency "draper"
s.add_development_dependency "enumerize", "~> 2.1"
s.add_development_dependency "guard-rspec", "~> 4.7"
s.add_development_dependency "pry"
s.add_development_dependency "pry-rails"
s.add_development_dependency "rspec_junit_formatter"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "rubocop", "~> 1.9"
s.add_development_dependency "rubocop-rails"
s.add_development_dependency "sqlite3"
end