2016-06-07 21:17:31 -03:00
|
|
|
# Copyright (c) 2010-2016 Michael Dvorkin and contributors
|
2011-11-08 12:56:04 -08:00
|
|
|
#
|
|
|
|
# Awesome Print is freely distributable under the terms of MIT license.
|
|
|
|
# See LICENSE file or http://www.opensource.org/licenses/mit-license.php
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
2010-04-02 21:43:46 -07:00
|
|
|
Gem::Specification.new do |s|
|
2011-11-08 12:56:04 -08:00
|
|
|
s.name = "awesome_print"
|
2016-06-07 02:52:15 +10:00
|
|
|
s.version = "1.7.0"
|
2011-11-08 12:56:04 -08:00
|
|
|
# s.platform = Gem::Platform::RUBY
|
|
|
|
s.authors = "Michael Dvorkin"
|
2011-12-16 16:01:28 -08:00
|
|
|
s.date = Time.now.strftime("%Y-%m-%d")
|
2011-11-08 12:56:04 -08:00
|
|
|
s.email = "mike@dvorkin.net"
|
2016-06-07 02:52:15 +10:00
|
|
|
s.homepage = "https://github.com/awesome-print/awesome_print"
|
2011-11-08 12:56:04 -08:00
|
|
|
s.summary = "Pretty print Ruby objects with proper indentation and colors"
|
|
|
|
s.description = "Great Ruby dubugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins"
|
2013-10-05 11:11:48 -07:00
|
|
|
s.license = "MIT"
|
2011-11-08 12:56:04 -08:00
|
|
|
s.rubyforge_project = "awesome_print"
|
2010-04-02 21:43:46 -07:00
|
|
|
|
2012-09-05 17:52:22 -07:00
|
|
|
s.files = Dir["[A-Z]*[^~]"] + Dir["lib/**/*.rb"] + Dir["spec/*"] + [".gitignore"]
|
|
|
|
s.test_files = Dir["spec/*"]
|
2011-11-08 12:56:04 -08:00
|
|
|
s.executables = []
|
|
|
|
s.require_paths = ["lib"]
|
2010-04-02 21:43:46 -07:00
|
|
|
|
2014-08-08 13:56:23 +12:00
|
|
|
s.add_development_dependency "rspec", ">= 3.0.0"
|
2014-12-30 16:09:18 -02:00
|
|
|
s.add_development_dependency "appraisal"
|
2011-11-08 12:56:04 -08:00
|
|
|
s.add_development_dependency "fakefs", ">= 0.2.1"
|
2014-12-31 10:52:23 -02:00
|
|
|
s.add_development_dependency 'sqlite3'
|
|
|
|
s.add_development_dependency 'nokogiri', '>= 1.6.5'
|
2015-01-20 17:52:27 -02:00
|
|
|
s.add_development_dependency 'codeclimate-test-reporter'
|
2010-04-02 21:43:46 -07:00
|
|
|
end
|