cmess 0.0.7.239 → 0.0.8.274

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/ChangeLog CHANGED
@@ -1,5 +1,9 @@
1
1
  = Revision history for cmess
2
2
 
3
+ == 0.0.8 [2008-08-14]
4
+
5
+ * Require 'cmess' inside libs, so the user doesn't have to
6
+
3
7
  == 0.0.7 [2008-05-19]
4
8
 
5
9
  * Fixed "Illegal seek" error when inside a pipe
data/README CHANGED
@@ -1,8 +1,8 @@
1
- = cmess - Assist with messed up encodings
1
+ = cmess - Assist with handling messed up encodings
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to cmess version 0.0.7
5
+ This documentation refers to cmess version 0.0.8
6
6
 
7
7
 
8
8
  == DESCRIPTION
data/bin/cinderella CHANGED
@@ -34,7 +34,6 @@ require 'yaml'
34
34
 
35
35
  $: << File.join(File.dirname(__FILE__), '..', 'lib')
36
36
 
37
- require 'cmess'
38
37
  require 'cmess/cinderella'
39
38
  require 'cmess/cli'
40
39
 
data/bin/decode_entities CHANGED
@@ -33,7 +33,6 @@ require 'optparse'
33
33
 
34
34
  $: << File.join(File.dirname(__FILE__), '..', 'lib')
35
35
 
36
- require 'cmess'
37
36
  require 'cmess/decode_entities'
38
37
  require 'cmess/cli'
39
38
 
data/bin/guess_encoding CHANGED
@@ -36,7 +36,6 @@ require 'nuggets/string/word_wrap'
36
36
 
37
37
  $: << File.join(File.dirname(__FILE__), '..', 'lib')
38
38
 
39
- require 'cmess'
40
39
  require 'cmess/guess_encoding'
41
40
  require 'cmess/cli'
42
41
 
@@ -27,6 +27,7 @@
27
27
  #++
28
28
 
29
29
  require 'iconv'
30
+ require 'cmess'
30
31
 
31
32
  # Find (and possibly repair) doubly encoded characters. Here's how it's done:
32
33
  #
@@ -27,6 +27,7 @@
27
27
  #++
28
28
 
29
29
  require 'iconv'
30
+ require 'cmess'
30
31
 
31
32
  require 'rubygems'
32
33
  require 'htmlentities/string'
@@ -36,6 +36,8 @@ require 'yaml'
36
36
  require 'iconv'
37
37
  require 'forwardable'
38
38
 
39
+ require 'cmess'
40
+
39
41
  # Outputs given string (or line), being encoded in target encoding, encoded in
40
42
  # various test encodings, thus allowing to identify the (seemingly) correct
41
43
  # encoding by visually comparing the input string with its desired appearance.
data/lib/cmess/version.rb CHANGED
@@ -30,7 +30,7 @@ module CMess::Version
30
30
 
31
31
  MAJOR = 0
32
32
  MINOR = 0
33
- TINY = 7
33
+ TINY = 8
34
34
 
35
35
  class << self
36
36
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmess
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7.239
4
+ version: 0.0.8.274
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Wille
@@ -9,11 +9,12 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-05-19 00:00:00 +02:00
12
+ date: 2008-08-14 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ruby-nuggets
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -23,6 +24,7 @@ dependencies:
23
24
  version:
24
25
  - !ruby/object:Gem::Dependency
25
26
  name: htmlentities
27
+ type: :runtime
26
28
  version_requirement:
27
29
  version_requirements: !ruby/object:Gem::Requirement
28
30
  requirements:
@@ -94,14 +96,14 @@ homepage: http://prometheus.rubyforge.org/cmess
94
96
  post_install_message:
95
97
  rdoc_options:
96
98
  - --line-numbers
97
- - --all
98
- - --inline-source
99
- - --title
100
- - cmess Application documentation
101
99
  - --main
102
100
  - README
101
+ - --inline-source
102
+ - --all
103
103
  - --charset
104
104
  - UTF-8
105
+ - --title
106
+ - cmess Application documentation
105
107
  require_paths:
106
108
  - lib
107
109
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -119,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
121
  requirements: []
120
122
 
121
123
  rubyforge_project: prometheus
122
- rubygems_version: 1.1.1
124
+ rubygems_version: 1.2.0
123
125
  signing_key:
124
126
  specification_version: 2
125
127
  summary: "Assist with handling messed up encodings (Currently includes the following tools: cinderella, decode_entities, guess_encoding)"