1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00
awesome_print/awesome_print.gemspec

34 lines
1.4 KiB
Ruby
Raw Normal View History

# Copyright (c) 2010-2016 Michael Dvorkin and contributors
2011-11-08 15:56:04 -05:00
#
# Awesome Print is freely distributable under the terms of MIT license.
# See LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
2016-06-07 20:25:22 -04:00
$:.push File.expand_path('../lib', __FILE__)
require 'awesome_print/version'
2010-04-03 00:43:46 -04:00
Gem::Specification.new do |s|
s.name = 'awesome_print'
2016-06-07 20:25:22 -04:00
s.version = AwesomePrint.version
s.authors = 'Michael Dvorkin'
s.date = Time.now.strftime('%Y-%m-%d')
s.email = 'mike@dvorkin.net'
s.homepage = 'https://github.com/awesome-print/awesome_print'
s.summary = 'Pretty print Ruby objects with proper indentation and colors'
2017-06-29 13:33:48 -04:00
s.description = 'Great Ruby debugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins'
s.license = 'MIT'
2010-04-03 00:43:46 -04:00
s.files = Dir['[A-Z]*[^~]'] + Dir['lib/**/*.rb'] + Dir['spec/**/*'] + ['.gitignore']
s.test_files = Dir['spec/**/*']
2011-11-08 15:56:04 -05:00
s.executables = []
s.require_paths = ['lib']
2010-04-03 00:43:46 -04:00
s.add_development_dependency 'rspec', '>= 3.0.0'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'fakefs', '>= 0.2.1'
2014-12-31 07:52:23 -05:00
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'nokogiri', '>= 1.11.0'
# s.add_development_dependency 'simplecov'
# s.add_development_dependency 'codeclimate-test-reporter'
2010-04-03 00:43:46 -04:00
end