2010-04-03 00:43:46 -04:00
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
2011-05-13 18:23:28 -04:00
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
2010-04-03 00:43:46 -04:00
# -*- encoding: utf-8 -*-
Gem :: Specification . new do | s |
s . name = %q{ awesome_print }
2011-05-13 18:23:28 -04:00
s . version = " 0.4.0 "
2010-04-03 00:43:46 -04:00
s . required_rubygems_version = Gem :: Requirement . new ( " >= 0 " ) if s . respond_to? :required_rubygems_version =
s . authors = [ " Michael Dvorkin " ]
2011-05-13 18:23:28 -04:00
s . date = %q{ 2011-05-13 }
2010-04-03 00:43:46 -04:00
s . description = %q{ Great Ruby dubugging companion: pretty print Ruby objects to visualize their structure. Supports Rails ActiveRecord objects via included mixin. }
s . email = %q{ mike@dvorkin.net }
s . extra_rdoc_files = [
" LICENSE " ,
2011-05-13 18:23:28 -04:00
" README.md "
2010-04-03 00:43:46 -04:00
]
s . files = [
2010-04-08 00:31:21 -04:00
" CHANGELOG " ,
2011-05-13 18:23:28 -04:00
" LICENSE " ,
" README.md " ,
" Rakefile " ,
" VERSION " ,
" init.rb " ,
" lib/ap.rb " ,
" lib/ap/awesome_print.rb " ,
" lib/ap/core_ext/array.rb " ,
" lib/ap/core_ext/class.rb " ,
" lib/ap/core_ext/kernel.rb " ,
" lib/ap/core_ext/logger.rb " ,
" lib/ap/core_ext/method.rb " ,
" lib/ap/core_ext/object.rb " ,
" lib/ap/core_ext/string.rb " ,
" lib/ap/mixin/action_view.rb " ,
" lib/ap/mixin/active_record.rb " ,
" lib/ap/mixin/active_support.rb " ,
" lib/ap/mixin/mongo_mapper.rb " ,
" lib/awesome_print.rb " ,
" rails/init.rb " ,
" spec/action_view_spec.rb " ,
" spec/active_record_spec.rb " ,
" spec/awesome_print_spec.rb " ,
" spec/colorization_spec.rb " ,
" spec/logger_spec.rb " ,
" spec/methods_spec.rb " ,
" spec/mongo_mapper_spec.rb " ,
" spec/spec_helper.rb " ,
" spec/string_spec.rb "
2010-04-03 00:43:46 -04:00
]
s . homepage = %q{ http://github.com/michaeldv/awesome_print }
s . require_paths = [ " lib " ]
s . rubyforge_project = %q{ awesome_print }
2011-05-13 18:23:28 -04:00
s . rubygems_version = %q{ 1.3.7 }
2010-04-03 00:43:46 -04:00
s . summary = %q{ Pretty print Ruby objects with proper indentation and colors. }
if s . respond_to? :specification_version then
current_version = Gem :: Specification :: CURRENT_SPECIFICATION_VERSION
s . specification_version = 3
2011-05-13 18:23:28 -04:00
if Gem :: Version . new ( Gem :: VERSION ) > = Gem :: Version . new ( '1.2.0' ) then
2011-05-06 18:20:52 -04:00
s . add_development_dependency ( %q< rspec > , [ " >= 2.5.0 " ] )
2010-04-03 00:43:46 -04:00
else
2011-05-06 18:20:52 -04:00
s . add_dependency ( %q< rspec > , [ " >= 2.5.0 " ] )
2010-04-03 00:43:46 -04:00
end
else
2011-05-06 18:20:52 -04:00
s . add_dependency ( %q< rspec > , [ " >= 2.5.0 " ] )
2010-04-03 00:43:46 -04:00
end
end