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

Release 0.4.0

This commit is contained in:
Mike Dvorkin 2011-05-13 15:23:28 -07:00
parent 7202362241
commit 91b73c47fd
2 changed files with 36 additions and 43 deletions

View file

@ -1 +1 @@
0.3.2 0.4.0

View file

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