Sha256: 244bfd0ede26c03b0fdff59b23abbac097adce049c9357da8720ce7479c7dfd4

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'app_reporter/version'

Gem::Specification.new do |spec|
  spec.name          = "app_reporter"
  spec.version       = AppReporter::VERSION
  spec.authors       = ["Rohit Bhore"]
  spec.email         = ["rohitpbhore@gmail.com"]

  spec.summary       = %q{Code quality report through metric_fu and brakeman gem}
  spec.description   = %q{Code quality report through metric_fu and brakeman gem}
  spec.homepage      = "https://github.com/rohitpbhore/app_reporter.git"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.8"
  spec.add_development_dependency "rake", "~> 10.0"

  spec.add_runtime_dependency "brakeman"
  spec.add_runtime_dependency "metric_fu"
  spec.add_runtime_dependency "railties"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
app_reporter-1.0.0 app_reporter.gemspec