Sha256: 9d948433cb83ec928d82e0fdb9f565196814135da9b2e505047b56b1a9d1119c
Contents?: true
Size: 974 Bytes
Versions: 10
Compression:
Stored size: 974 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'hedgelog/version' Gem::Specification.new do |spec| spec.name = "hedgelog" spec.version = Hedgelog::VERSION spec.licenses = ['MIT'] spec.authors = ["Jeff Utter"] spec.email = ["jeff.utter@firespring.com"] spec.homepage = 'https://github.com/firespring/hedgelog' spec.summary = "An opinionated/strucutred JSON logger for Ruby" spec.description = "An opinionated/structured JSON logger for Ruby" spec.homepage = "http://firespring.com" 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_dependency "yajl-ruby", "~> 1.2" spec.add_development_dependency "bundler", "~> 1.7" end
Version data entries
10 entries across 10 versions & 1 rubygems