Sha256: a6d34df01fbbe9b3985098ea350b2044fdae97a52cdaa817b06b90355d26329f

Contents?: true

Size: 1.37 KB

Versions: 1

Compression:

Stored size: 1.37 KB

Contents

# (c) 2017 Ribose Inc.
#

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "attr_masker/version"

Gem::Specification.new do |gem|
  gem.name              = "attr_masker"
  gem.version           = AttrMasker::Version.string
  gem.authors           = ["Ribose Inc."]
  gem.email             = ["open.source@ribose.com"]
  gem.homepage          = "https://github.com/riboseinc/attr_masker"
  gem.summary           = "Masking attributes"
  gem.licenses          = ["MIT"]
  gem.description       = "It is desired to mask certain attributes " \
                          "of certain models by modifying the database."

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_runtime_dependency("rails", ">= 4.0.0", "< 6.0")
  gem.add_runtime_dependency("ruby-progressbar", "~> 1.8")

  gem.add_development_dependency("bundler", "~> 1.15")
  gem.add_development_dependency("combustion", "~> 0.7.0")
  gem.add_development_dependency("database_cleaner", "~> 1.6")
  gem.add_development_dependency("pry")
  gem.add_development_dependency("rspec", ">= 3.0")
  gem.add_development_dependency("rubocop", "~> 0.49.1")
  gem.add_development_dependency("sqlite3", "~> 1.3.13")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
attr_masker-0.1.1 attr_masker.gemspec