Sha256: 2f6fac00b15023d1778331862ec7b90d2ceb792d0f268d374073eae31a942f18

Contents?: true

Size: 1.1 KB

Versions: 7

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "style_stats"
  spec.version       = StyleStats::VERSION
  spec.authors       = ["shiro16"]
  spec.email         = ["nyanyanyawan24@gmail.com"]

  spec.summary       = %q{StyleStats is a library to collect CSS statistics!}
  spec.description   = %q{Oriainal StyleStats is a Node.js library to collect CSS statistics! This gem was port in Ruby}
  spec.homepage      = ""
  spec.license       = "MIT"

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

  spec.add_runtime_dependency 'oga'
  spec.add_runtime_dependency 'css_parser'
  spec.add_runtime_dependency 'command_line_reporter'

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
style_stats-0.4.2 style_stats.gemspec
style_stats-0.4.1 style_stats.gemspec
style_stats-0.4.0 style_stats.gemspec
style_stats-0.3.0 style_stats.gemspec
style_stats-0.2.0 style_stats.gemspec
style_stats-0.1.0 style_stats.gemspec
style_stats-0.0.1 style_stats.gemspec