Sha256: a08bb6fd4186283ba9b1dda7cd0cda7ec66d5ed732960ea898546c872ec3b756
Contents?: true
Size: 1.14 KB
Versions: 8
Compression:
Stored size: 1.14 KB
Contents
Gem::Specification.new do |spec| spec.name = 'lumberjack' spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip spec.authors = ['Brian Durand'] spec.email = ['bbdurand@gmail.com'] spec.summary = "A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger." spec.homepage = "https://github.com/bdurand/lumberjack" spec.license = "MIT" # 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. ignore_files = %w( .gitignore .travis.yml Appraisals Gemfile Gemfile.lock Rakefile gemfiles/ spec/ ) spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject{ |f| ignore_files.any?{ |path| f.start_with?(path) } } end spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.3.0' spec.add_development_dependency("rspec", ["~> 3.0"]) spec.add_development_dependency("timecop") spec.add_development_dependency "rake" spec.add_development_dependency "appraisal" end
Version data entries
8 entries across 8 versions & 1 rubygems