Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blackwinter committed Oct 7, 2014
1 parent 2cddf23 commit beac834
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 23 deletions.
13 changes: 9 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

= Revision history for cmess

== 0.5.0 [2014-10-07]

* Dropped +autoload+; require modules explicitly.
* Ruby 2.2 compatibility.

== 0.4.1 [2014-06-20]

* Various updates/refactorings.
Expand All @@ -28,7 +33,7 @@

== 0.2.4 [2010-07-13]

* decode_entities: Added flavour 'xml-safe' for HTMLEntities decoder
* decode_entities: Added flavour +xml-safe+ for HTMLEntities decoder
and made it the new default

== 0.2.3 [2010-04-23]
Expand All @@ -53,12 +58,12 @@

* Some refactoring; started to make tools more usable as a library
* Make tools accept multiple files for input (via tempfile)
* Use ENV.user_encoding from ruby-nuggets
* Use +ENV.user_encoding+ from ruby-nuggets
* Wrap command execution in a block catching any exceptions

== 0.1.1 [2008-09-16]

* Added bconv tool to convert between bibliographic encodings
* Added +bconv+ tool to convert between bibliographic encodings

== 0.1.0 [2008-09-15]

Expand All @@ -73,7 +78,7 @@

== 0.0.8 [2008-08-14]

* Require 'cmess' inside libs, so the user doesn't have to
* Require +cmess+ inside libs, so the user doesn't have to

== 0.0.7 [2008-05-19]

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

== VERSION

This documentation refers to cmess version 0.4.1
This documentation refers to cmess version 0.5.0


== DESCRIPTION
Expand Down
32 changes: 16 additions & 16 deletions cmess.gemspec
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
# -*- encoding: utf-8 -*-
# stub: cmess 0.4.1 ruby lib
# stub: cmess 0.5.0 ruby lib

Gem::Specification.new do |s|
s.name = "cmess"
s.version = "0.4.1"
s.version = "0.5.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Jens Wille"]
s.date = "2014-06-20"
s.date = "2014-10-07"
s.description = "Assist with handling messed up encodings (Currently includes the\nfollowing tools: bconv, cinderella, decode_entities, guess_encoding)\n"
s.email = "jens.wille@gmail.com"
s.executables = ["bconv", "cinderella", "decode_entities", "guess_encoding"]
s.extra_rdoc_files = ["README", "COPYING", "ChangeLog"]
s.files = ["COPYING", "ChangeLog", "README", "Rakefile", "bin/bconv", "bin/cinderella", "bin/decode_entities", "bin/guess_encoding", "data/chartab.yaml", "data/csets/iso_8859-1.yaml", "data/csets/iso_8859-15.yaml", "data/csets/latin1.yaml", "data/csets/unicode/basic_latin.yaml", "data/csets/unicode/cyrillic-supplement.yaml", "data/csets/unicode/cyrillic.yaml", "data/csets/unicode/greek.yaml", "data/csets/unicode/ipa_extensions.yaml", "data/csets/unicode/latin-extended-c.yaml", "data/csets/unicode/latin-extended-d.yaml", "data/csets/unicode/latin_1_supplement.yaml", "data/csets/unicode/latin_extended_a.yaml", "data/csets/unicode/latin_extended_additional.yaml", "data/csets/unicode/latin_extended_b.yaml", "data/csets/unicode/letterlike_symbols.yaml", "data/csets/unicode/spacing_modifier_letters.yaml", "data/csets/utf-8.yaml", "data/csets/utf8.yaml", "data/test_chars.yaml", "example/cinderella/crop", "example/cinderella/crop_repaired", "example/cinderella/empty6-slash.txt", "example/cinderella/empty6-slash_repaired.txt", "example/cinderella/pot", "example/guess_encoding/check_results", "example/guess_encoding/de.utf-8.txt", "example/guess_encoding/en.utf-8.txt", "example/guess_encoding/fr.utf-8.txt", "example/guess_encoding/it.utf-8.txt", "lib/cmess.rb", "lib/cmess/bconv.rb", "lib/cmess/cinderella.rb", "lib/cmess/cli.rb", "lib/cmess/decode_entities.rb", "lib/cmess/guess_encoding.rb", "lib/cmess/guess_encoding/automatic.rb", "lib/cmess/guess_encoding/encoding.rb", "lib/cmess/guess_encoding/manual.rb", "lib/cmess/version.rb"]
s.homepage = "http://github.com/blackwinter/cmess"
s.licenses = ["AGPL-3.0"]
s.post_install_message = "\ncmess-0.4.1 [2014-06-20]:\n\n* Various updates/refactorings.\n* Housekeeping.\n\n"
s.rdoc_options = ["--title", "cmess Application documentation (v0.4.1)", "--charset", "UTF-8", "--line-numbers", "--all", "--main", "README"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
s.rubygems_version = "2.3.0"
s.post_install_message = "\ncmess-0.5.0 [2014-10-07]:\n\n* Dropped +autoload+; require modules explicitly.\n* Ruby 2.2 compatibility.\n\n"
s.rdoc_options = ["--title", "cmess Application documentation (v0.5.0)", "--charset", "UTF-8", "--line-numbers", "--all", "--main", "README"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.rubygems_version = "2.4.2"
s.summary = "Assist with handling messed up encodings (Currently includes the following tools: bconv, cinderella, decode_entities, guess_encoding)"

if s.respond_to? :specification_version then
s.specification_version = 4

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<htmlentities>, [">= 0"])
s.add_runtime_dependency(%q<nuggets>, [">= 0"])
s.add_runtime_dependency(%q<safe_yaml>, [">= 0"])
s.add_runtime_dependency(%q<htmlentities>, ["~> 4.3"])
s.add_runtime_dependency(%q<nuggets>, ["~> 1.0"])
s.add_runtime_dependency(%q<safe_yaml>, ["~> 1.0"])
s.add_development_dependency(%q<hen>, [">= 0"])
s.add_development_dependency(%q<rake>, [">= 0"])
else
s.add_dependency(%q<htmlentities>, [">= 0"])
s.add_dependency(%q<nuggets>, [">= 0"])
s.add_dependency(%q<safe_yaml>, [">= 0"])
s.add_dependency(%q<htmlentities>, ["~> 4.3"])
s.add_dependency(%q<nuggets>, ["~> 1.0"])
s.add_dependency(%q<safe_yaml>, ["~> 1.0"])
s.add_dependency(%q<hen>, [">= 0"])
s.add_dependency(%q<rake>, [">= 0"])
end
else
s.add_dependency(%q<htmlentities>, [">= 0"])
s.add_dependency(%q<nuggets>, [">= 0"])
s.add_dependency(%q<safe_yaml>, [">= 0"])
s.add_dependency(%q<htmlentities>, ["~> 4.3"])
s.add_dependency(%q<nuggets>, ["~> 1.0"])
s.add_dependency(%q<safe_yaml>, ["~> 1.0"])
s.add_dependency(%q<hen>, [">= 0"])
s.add_dependency(%q<rake>, [">= 0"])
end
Expand Down
4 changes: 2 additions & 2 deletions lib/cmess/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module CMess
module Version

MAJOR = 0
MINOR = 4
TINY = 1
MINOR = 5
TINY = 0

class << self

Expand Down

0 comments on commit beac834

Please sign in to comment.