hansi 0.1.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hansi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-22 00:00:00.000000000 Z
11
+ date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tool
@@ -71,12 +71,48 @@ email: konstantin.mailinglists@googlemail.com
71
71
  executables: []
72
72
  extensions: []
73
73
  extra_rdoc_files: []
74
- files: []
74
+ files:
75
+ - ".gitignore"
76
+ - ".rspec"
77
+ - ".travis.yml"
78
+ - Gemfile
79
+ - LICENSE
80
+ - README.md
81
+ - hansi.gemspec
82
+ - hansi.png
83
+ - lib/hansi.rb
84
+ - lib/hansi/ansi_code.rb
85
+ - lib/hansi/color.rb
86
+ - lib/hansi/color_parser.rb
87
+ - lib/hansi/color_renderer.rb
88
+ - lib/hansi/mode_detector.rb
89
+ - lib/hansi/palettes.rb
90
+ - lib/hansi/sexp_renderer.rb
91
+ - lib/hansi/special.rb
92
+ - lib/hansi/string_renderer.rb
93
+ - lib/hansi/theme.rb
94
+ - lib/hansi/themes.rb
95
+ - lib/hansi/version.rb
96
+ - spec/hansi/color_parser_spec.rb
97
+ - spec/hansi/color_renderer_spec.rb
98
+ - spec/hansi/color_spec.rb
99
+ - spec/hansi/mode_detector_spec.rb
100
+ - spec/hansi/sexp_renderer_spec.rb
101
+ - spec/hansi/special_spec.rb
102
+ - spec/hansi/string_renderer_spec.rb
103
+ - spec/hansi/theme_spec.rb
104
+ - spec/hansi_spec.rb
105
+ - spec/support.rb
106
+ - spec/support/coverage.rb
107
+ - spec/support/env.rb
108
+ - spec/support/escape_matcher.rb
109
+ - spec/support/parse_matcher.rb
110
+ - spec/support/render_matcher.rb
75
111
  homepage: https://github.com/rkh/hansi
76
112
  licenses:
77
113
  - MIT
78
114
  metadata: {}
79
- post_install_message:
115
+ post_install_message:
80
116
  rdoc_options: []
81
117
  require_paths:
82
118
  - lib
@@ -91,10 +127,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
127
  - !ruby/object:Gem::Version
92
128
  version: '0'
93
129
  requirements: []
94
- rubyforge_project:
95
- rubygems_version: 2.2.2
96
- signing_key:
130
+ rubygems_version: 3.3.7
131
+ signing_key:
97
132
  specification_version: 4
98
133
  summary: Hipster ANSI color library
99
- test_files: []
100
- has_rdoc:
134
+ test_files:
135
+ - spec/hansi/color_parser_spec.rb
136
+ - spec/hansi/color_renderer_spec.rb
137
+ - spec/hansi/color_spec.rb
138
+ - spec/hansi/mode_detector_spec.rb
139
+ - spec/hansi/sexp_renderer_spec.rb
140
+ - spec/hansi/special_spec.rb
141
+ - spec/hansi/string_renderer_spec.rb
142
+ - spec/hansi/theme_spec.rb
143
+ - spec/hansi_spec.rb
144
+ - spec/support.rb
145
+ - spec/support/coverage.rb
146
+ - spec/support/env.rb
147
+ - spec/support/escape_matcher.rb
148
+ - spec/support/parse_matcher.rb
149
+ - spec/support/render_matcher.rb