Sha256: 9f6a9f0e20e30db91c2bd0ada7efd21f56ce5d41d43105eb4ec1e749eb1c5888

Contents?: true

Size: 957 Bytes

Versions: 2

Compression:

Stored size: 957 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "little_log_friend/version"

Gem::Specification.new do |s|
  s.name        = "little_log_friend"
  s.version     = LittleLogFriend::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Rudolf Schmidt"]
  
  s.homepage    = "http://github.com/rudionrails/little_log_friend"
  
  s.summary     = %q{An easy way to set your Ruby standard logger to a more readable format}
  s.description = %q{LittleLogFriend sets your standard logger to the format: "DATE TIME [ LEVEL ] PID : MESSAGE"}

  s.rubyforge_project = "little_log_friend"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  
  s.add_development_dependency "rake"
  s.add_development_dependency "activesupport", "~> 2.x"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
little_log_friend-0.2.1 little_log_friend.gemspec
little_log_friend-0.2.0 little_log_friend.gemspec