Sha256: 173a979cfbe1d9e3d82746b38018615ebc77a1f89b5da2406f89de23b7dd8407
Contents?: true
Size: 1.41 KB
Versions: 4
Compression:
Stored size: 1.41 KB
Contents
$:.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 = ["rubygems@platan.us", "ldlsegovia@gmail.com"] 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
Version data entries
4 entries across 4 versions & 1 rubygems