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

31 lines
1.2 KiB
Ruby
Raw Permalink Normal View History

2015-03-19 08:19:04 -04:00
$:.push File.expand_path('../lib', __FILE__)
2011-11-08 15:56:04 -05:00
2015-03-19 08:19:04 -04:00
require "rake"
require 'awesome_print/version'
2010-04-03 00:43:46 -04:00
Gem::Specification.new do |s|
2011-11-08 15:56:04 -05:00
s.name = "awesome_print"
s.version = AwesomePrint.version
2011-11-08 15:56:04 -05:00
# s.platform = Gem::Platform::RUBY
s.authors = "Michael Dvorkin"
2011-12-16 19:01:28 -05:00
s.date = Time.now.strftime("%Y-%m-%d")
2011-11-08 15:56:04 -05:00
s.email = "mike@dvorkin.net"
s.homepage = "http://github.com/michaeldv/awesome_print"
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 14:11:48 -04:00
s.license = "MIT"
2011-11-08 15:56:04 -05:00
s.rubyforge_project = "awesome_print"
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"
2014-12-30 13:09:18 -05:00
s.add_development_dependency "appraisal"
2011-11-08 15:56:04 -05:00
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.6.5'
2015-01-20 14:52:27 -05:00
s.add_development_dependency 'codeclimate-test-reporter'
2010-04-03 00:43:46 -04:00
end