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

78 lines
2.3 KiB
Ruby
Raw Normal View History

2010-04-03 00:43:46 -04:00
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{awesome_print}
2011-02-03 01:59:31 -05:00
s.version = "0.3.2"
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-02-03 01:59:31 -05:00
s.date = %q{2011-02-02}
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",
"README.md"
]
s.files = [
"CHANGELOG",
"LICENSE",
2010-04-03 00:43:46 -04:00
"README.md",
"Rakefile",
"VERSION",
"init.rb",
"lib/ap.rb",
"lib/ap/awesome_print.rb",
2010-11-09 23:29:32 -05:00
"lib/ap/core_ext/array.rb",
"lib/ap/core_ext/class.rb",
2010-04-03 00:43:46 -04:00
"lib/ap/core_ext/kernel.rb",
2010-05-06 01:23:18 -04:00
"lib/ap/core_ext/logger.rb",
2010-11-13 12:59:29 -05:00
"lib/ap/core_ext/method.rb",
2010-11-09 23:29:32 -05:00
"lib/ap/core_ext/object.rb",
2010-04-03 00:43:46 -04:00
"lib/ap/core_ext/string.rb",
2010-06-03 22:53:47 -04:00
"lib/ap/mixin/action_view.rb",
2010-05-06 01:23:18 -04:00
"lib/ap/mixin/active_record.rb",
"lib/ap/mixin/active_support.rb",
2010-11-09 23:29:32 -05:00
"lib/awesome_print.rb",
2010-04-03 00:43:46 -04:00
"rails/init.rb",
2010-06-03 22:53:47 -04:00
"spec/action_view_spec.rb",
2010-05-06 01:23:18 -04:00
"spec/active_record_spec.rb",
2010-04-03 00:43:46 -04:00
"spec/awesome_print_spec.rb",
2010-05-06 01:23:18 -04:00
"spec/logger_spec.rb",
2010-11-09 23:29:32 -05:00
"spec/methods_spec.rb",
2010-04-03 00:43:46 -04:00
"spec/spec_helper.rb",
"spec/string_spec.rb"
]
s.homepage = %q{http://github.com/michaeldv/awesome_print}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{awesome_print}
s.rubygems_version = %q{1.3.6}
s.summary = %q{Pretty print Ruby objects with proper indentation and colors.}
s.test_files = [
2010-06-03 22:53:47 -04:00
"spec/action_view_spec.rb",
"spec/active_record_spec.rb",
2010-05-06 01:23:18 -04:00
"spec/awesome_print_spec.rb",
"spec/logger_spec.rb",
2010-11-09 23:29:32 -05:00
"spec/methods_spec.rb",
2010-04-03 00:43:46 -04:00
"spec/spec_helper.rb",
"spec/string_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
2010-11-09 23:29:32 -05:00
s.add_development_dependency(%q<rspec>, [">= 1.3.0"])
2010-04-03 00:43:46 -04:00
else
2010-11-09 23:29:32 -05:00
s.add_dependency(%q<rspec>, [">= 1.3.0"])
2010-04-03 00:43:46 -04:00
end
else
2010-11-09 23:29:32 -05:00
s.add_dependency(%q<rspec>, [">= 1.3.0"])
2010-04-03 00:43:46 -04:00
end
end