Sha256: fd0bde6e1eed146806e28bf7b02d5faeecb733f1383ef4516edfa2b505e40510

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

require_relative 'lib/neeto_compliance/version'

Gem::Specification.new do |spec|
  spec.name          = 'neeto-compliance'
  spec.version       = NeetoCompliance::VERSION
  spec.authors       = ['Unnikrishnan KP']
  spec.email         = ['unnikrishnan.kp@bigbinary.com']

  spec.summary       = 'Check if the project follows guidelines setup for Neeto Products'
  spec.homepage      = 'https://github.com/bigbinary/neeto-compliance'
  spec.required_ruby_version = '>= 2.4.0'

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/bigbinary/neeto-compliance'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir        = 'bin'
  spec.executables   = %w[neeto-audit sync-with-neeto-commons sync-neeto-repos]
  spec.require_paths = ['lib']

  spec.add_dependency "colorize"
  spec.add_dependency "json", "~> 2.6.2" # for json manipulation
  spec.add_dependency "hashdiff" # for comparing deeply nested hashes
  spec.add_dependency "deep_merge"
  # For more information and examples about making a new gem, checkout our
  # guide at: https://bundler.io/guides/creating_gem.html
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
neeto-compliance-1.0.58 neeto-compliance.gemspec