--- !ruby/object:Gem::Specification name: tty-table version: !ruby/object:Gem::Version version: 0.3.0 platform: ruby authors: - Piotr Murach autorequire: bindir: bin cert_chain: [] date: 2015-07-06 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: equatable requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.5' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.5' - !ruby/object:Gem::Dependency name: necromancer requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.3' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.3' - !ruby/object:Gem::Dependency name: pastel requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.4' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.4' - !ruby/object:Gem::Dependency name: tty-screen requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.2' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.2' - !ruby/object:Gem::Dependency name: verse requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.4' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '0.4' - !ruby/object:Gem::Dependency name: unicode_utils requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.4.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.4.0 - !ruby/object:Gem::Dependency name: bundler requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '1.5' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: '1.5' description: A flexible and intuitive table generator email: - '' executables: [] extensions: [] extra_rdoc_files: [] files: - .gitignore - .rspec - .ruby-version - .travis.yml - CHANGELOG.md - Gemfile - LICENSE.txt - README.md - Rakefile - benchmarks/speed.rb - lib/tty-table.rb - lib/tty/table.rb - lib/tty/table/alignment_set.rb - lib/tty/table/border.rb - lib/tty/table/border/ascii.rb - lib/tty/table/border/null.rb - lib/tty/table/border/row_line.rb - lib/tty/table/border/unicode.rb - lib/tty/table/border_dsl.rb - lib/tty/table/border_options.rb - lib/tty/table/column_constraint.rb - lib/tty/table/column_set.rb - lib/tty/table/empty.rb - lib/tty/table/error.rb - lib/tty/table/field.rb - lib/tty/table/header.rb - lib/tty/table/indentation.rb - lib/tty/table/operation/alignment.rb - lib/tty/table/operation/escape.rb - lib/tty/table/operation/filter.rb - lib/tty/table/operation/padding.rb - lib/tty/table/operation/truncation.rb - lib/tty/table/operation/wrapped.rb - lib/tty/table/operations.rb - lib/tty/table/options.rb - lib/tty/table/orientation.rb - lib/tty/table/orientation/horizontal.rb - lib/tty/table/orientation/vertical.rb - lib/tty/table/renderer.rb - lib/tty/table/renderer/ascii.rb - lib/tty/table/renderer/basic.rb - lib/tty/table/renderer/unicode.rb - lib/tty/table/row.rb - lib/tty/table/transformation.rb - lib/tty/table/validatable.rb - lib/tty/table/version.rb - spec/spec_helper.rb - spec/unit/access_spec.rb - spec/unit/add_row_spec.rb - spec/unit/alignment_set/each_spec.rb - spec/unit/alignment_set/new_spec.rb - spec/unit/alignment_set/to_ary_spec.rb - spec/unit/alignment_spec.rb - spec/unit/border/ascii/rendering_spec.rb - spec/unit/border/new_spec.rb - spec/unit/border/null/rendering_spec.rb - spec/unit/border/options/from_spec.rb - spec/unit/border/options/new_spec.rb - spec/unit/border/unicode/rendering_spec.rb - spec/unit/border_options/new_spec.rb - spec/unit/border_options/update_spec.rb - spec/unit/column_constraint/enforce_spec.rb - spec/unit/column_constraint/widths_spec.rb - spec/unit/column_set/extract_widths_spec.rb - spec/unit/column_set/total_width_spec.rb - spec/unit/column_set/widths_from_spec.rb - spec/unit/data_spec.rb - spec/unit/each_spec.rb - spec/unit/each_with_index_spec.rb - spec/unit/empty_spec.rb - spec/unit/eql_spec.rb - spec/unit/field/equality_spec.rb - spec/unit/field/length_spec.rb - spec/unit/field/lines_spec.rb - spec/unit/field/new_spec.rb - spec/unit/field/width_spec.rb - spec/unit/filter_spec.rb - spec/unit/header/call_spec.rb - spec/unit/header/color_spec.rb - spec/unit/header/equality_spec.rb - spec/unit/header/height_spec.rb - spec/unit/header/new_spec.rb - spec/unit/header/set_spec.rb - spec/unit/header/to_ary_spec.rb - spec/unit/header_spec.rb - spec/unit/indentation/indent_spec.rb - spec/unit/new_spec.rb - spec/unit/operation/alignment/call_spec.rb - spec/unit/operation/escape/call_spec.rb - spec/unit/operation/filter/call_spec.rb - spec/unit/operation/truncation/call_spec.rb - spec/unit/operation/wrapped/call_spec.rb - spec/unit/operations/new_spec.rb - spec/unit/options/access_spec.rb - spec/unit/options_spec.rb - spec/unit/orientation_spec.rb - spec/unit/padding_spec.rb - spec/unit/properties_spec.rb - spec/unit/render_repeat_spec.rb - spec/unit/render_spec.rb - spec/unit/render_with_spec.rb - spec/unit/renderer/ascii/coloring_spec.rb - spec/unit/renderer/ascii/indentation_spec.rb - spec/unit/renderer/ascii/multiline_spec.rb - spec/unit/renderer/ascii/padding_spec.rb - spec/unit/renderer/ascii/render_spec.rb - spec/unit/renderer/ascii/resizing_spec.rb - spec/unit/renderer/ascii/separator_spec.rb - spec/unit/renderer/basic/alignment_spec.rb - spec/unit/renderer/basic/coloring_spec.rb - spec/unit/renderer/basic/extract_column_widths_spec.rb - spec/unit/renderer/basic/filter_spec.rb - spec/unit/renderer/basic/indentation_spec.rb - spec/unit/renderer/basic/multiline_spec.rb - spec/unit/renderer/basic/new_spec.rb - spec/unit/renderer/basic/options_spec.rb - spec/unit/renderer/basic/padding_spec.rb - spec/unit/renderer/basic/render_spec.rb - spec/unit/renderer/basic/resizing_spec.rb - spec/unit/renderer/basic/separator_spec.rb - spec/unit/renderer/basic/truncation_spec.rb - spec/unit/renderer/basic/wrapping_spec.rb - spec/unit/renderer/border_spec.rb - spec/unit/renderer/render_spec.rb - spec/unit/renderer/select_spec.rb - spec/unit/renderer/unicode/coloring_spec.rb - spec/unit/renderer/unicode/indentation_spec.rb - spec/unit/renderer/unicode/padding_spec.rb - spec/unit/renderer/unicode/render_spec.rb - spec/unit/renderer/unicode/separator_spec.rb - spec/unit/renderer_spec.rb - spec/unit/rotate_spec.rb - spec/unit/row/access_spec.rb - spec/unit/row/call_spec.rb - spec/unit/row/data_spec.rb - spec/unit/row/each_spec.rb - spec/unit/row/equality_spec.rb - spec/unit/row/height_spec.rb - spec/unit/row/new_spec.rb - spec/unit/row/to_ary_spec.rb - spec/unit/to_s_spec.rb - spec/unit/transformation/extract_tuples_spec.rb - spec/unit/utf_spec.rb - spec/unit/validatable/validate_options_spec.rb - spec/unit/validatable_spec.rb - tasks/console.rake - tasks/coverage.rake - tasks/spec.rake - tty-table.gemspec homepage: https://github.com/peter-murach/tty-table licenses: - MIT metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: rubygems_version: 2.0.3 signing_key: specification_version: 4 summary: A flexible and intuitive table generator test_files: - spec/spec_helper.rb - spec/unit/access_spec.rb - spec/unit/add_row_spec.rb - spec/unit/alignment_set/each_spec.rb - spec/unit/alignment_set/new_spec.rb - spec/unit/alignment_set/to_ary_spec.rb - spec/unit/alignment_spec.rb - spec/unit/border/ascii/rendering_spec.rb - spec/unit/border/new_spec.rb - spec/unit/border/null/rendering_spec.rb - spec/unit/border/options/from_spec.rb - spec/unit/border/options/new_spec.rb - spec/unit/border/unicode/rendering_spec.rb - spec/unit/border_options/new_spec.rb - spec/unit/border_options/update_spec.rb - spec/unit/column_constraint/enforce_spec.rb - spec/unit/column_constraint/widths_spec.rb - spec/unit/column_set/extract_widths_spec.rb - spec/unit/column_set/total_width_spec.rb - spec/unit/column_set/widths_from_spec.rb - spec/unit/data_spec.rb - spec/unit/each_spec.rb - spec/unit/each_with_index_spec.rb - spec/unit/empty_spec.rb - spec/unit/eql_spec.rb - spec/unit/field/equality_spec.rb - spec/unit/field/length_spec.rb - spec/unit/field/lines_spec.rb - spec/unit/field/new_spec.rb - spec/unit/field/width_spec.rb - spec/unit/filter_spec.rb - spec/unit/header/call_spec.rb - spec/unit/header/color_spec.rb - spec/unit/header/equality_spec.rb - spec/unit/header/height_spec.rb - spec/unit/header/new_spec.rb - spec/unit/header/set_spec.rb - spec/unit/header/to_ary_spec.rb - spec/unit/header_spec.rb - spec/unit/indentation/indent_spec.rb - spec/unit/new_spec.rb - spec/unit/operation/alignment/call_spec.rb - spec/unit/operation/escape/call_spec.rb - spec/unit/operation/filter/call_spec.rb - spec/unit/operation/truncation/call_spec.rb - spec/unit/operation/wrapped/call_spec.rb - spec/unit/operations/new_spec.rb - spec/unit/options/access_spec.rb - spec/unit/options_spec.rb - spec/unit/orientation_spec.rb - spec/unit/padding_spec.rb - spec/unit/properties_spec.rb - spec/unit/render_repeat_spec.rb - spec/unit/render_spec.rb - spec/unit/render_with_spec.rb - spec/unit/renderer/ascii/coloring_spec.rb - spec/unit/renderer/ascii/indentation_spec.rb - spec/unit/renderer/ascii/multiline_spec.rb - spec/unit/renderer/ascii/padding_spec.rb - spec/unit/renderer/ascii/render_spec.rb - spec/unit/renderer/ascii/resizing_spec.rb - spec/unit/renderer/ascii/separator_spec.rb - spec/unit/renderer/basic/alignment_spec.rb - spec/unit/renderer/basic/coloring_spec.rb - spec/unit/renderer/basic/extract_column_widths_spec.rb - spec/unit/renderer/basic/filter_spec.rb - spec/unit/renderer/basic/indentation_spec.rb - spec/unit/renderer/basic/multiline_spec.rb - spec/unit/renderer/basic/new_spec.rb - spec/unit/renderer/basic/options_spec.rb - spec/unit/renderer/basic/padding_spec.rb - spec/unit/renderer/basic/render_spec.rb - spec/unit/renderer/basic/resizing_spec.rb - spec/unit/renderer/basic/separator_spec.rb - spec/unit/renderer/basic/truncation_spec.rb - spec/unit/renderer/basic/wrapping_spec.rb - spec/unit/renderer/border_spec.rb - spec/unit/renderer/render_spec.rb - spec/unit/renderer/select_spec.rb - spec/unit/renderer/unicode/coloring_spec.rb - spec/unit/renderer/unicode/indentation_spec.rb - spec/unit/renderer/unicode/padding_spec.rb - spec/unit/renderer/unicode/render_spec.rb - spec/unit/renderer/unicode/separator_spec.rb - spec/unit/renderer_spec.rb - spec/unit/rotate_spec.rb - spec/unit/row/access_spec.rb - spec/unit/row/call_spec.rb - spec/unit/row/data_spec.rb - spec/unit/row/each_spec.rb - spec/unit/row/equality_spec.rb - spec/unit/row/height_spec.rb - spec/unit/row/new_spec.rb - spec/unit/row/to_ary_spec.rb - spec/unit/to_s_spec.rb - spec/unit/transformation/extract_tuples_spec.rb - spec/unit/utf_spec.rb - spec/unit/validatable/validate_options_spec.rb - spec/unit/validatable_spec.rb has_rdoc: