ansel_iconv 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.4
2
+
3
+ * Requires activesupport 2.3.5 and works when 3.0 is installed
4
+
1
5
  == 1.0.3
2
6
 
3
7
  * Fix ActiveSupport deprecation warning
data/README.markdown CHANGED
@@ -1,11 +1,11 @@
1
1
  # ANSEL::Iconv
2
2
 
3
- ANSEL::Iconv is a wrapper for Iconv that adds ANSEL character set conversion to
4
- any other encoding supported by Iconv.
3
+ ANSEL::Iconv is a wrapper for Iconv that adds ANSEL character set conversion.
5
4
 
6
- Copyright (c) 2006-2009 Keith Morrison <mailto:keithm@infused.org>, <http://www.infused.org>
5
+ Copyright (c) 2006-2010 Keith Morrison <mailto:keithm@infused.org>, <http://www.infused.org>
7
6
 
8
7
  * Project page: <http://github.com/infused/ansel_iconv>
8
+ * API Documentation: <http://rdoc.info/projects/infused/dbf>
9
9
  * Report bugs: <http://github.com/infused/ansel_iconv/issues>
10
10
  * Questions? Email [keithm@infused.org](mailto:keithm@infused.org?subject=ANSEL::Iconv)
11
11
  with ANSEL::Iconv in the subject line
@@ -17,7 +17,7 @@ Copyright (c) 2006-2009 Keith Morrison <mailto:keithm@infused.org>, <http://www.
17
17
  ## Basic Usage
18
18
 
19
19
  Conversion from ANSEL to any other encoding is fully supported, but you cannot
20
- currently convert to ANSEL from another encoding. Two-way encoding will be addded
20
+ currently convert to ANSEL from another encoding. Two-way encoding will be added
21
21
  in a future release.
22
22
 
23
23
  require 'ansel_iconv'
@@ -28,17 +28,19 @@ in a future release.
28
28
 
29
29
  ## About the ANSEL character set
30
30
 
31
- ANSI/NISO Z39.47 also known as ANSEL is a character set encoding used
32
- primarily for bibliographic and genealogical data. It is one of the official
33
- character encoding supported by the Gedcom 5.5 standard. More information can be found at the
34
- [Official NISO standard](http://www.niso.org/kst/reports/standards?step=2&gid%3Austring%3Aiso-8859-1=&project_key%3Austring%3Aiso-8859-1=0b5d2bd7b690b60fcc75cde9256ed9f9e526e531)
35
- page.
31
+ [ANSI/NISO
32
+ Z39.47](http://www.niso.org/kst/reports/standards?step=2&gid%3Austring%3Aiso-8859-1=&project_key%3Austring%3Aiso-8859-1=0b5d2bd7b690b60fcc75cde9256ed9f9e526e531),
33
+ also known as ANSEL, is a character set encoding used primarily for
34
+ bibliographic and genealogical data. It is one of the official character
35
+ encodings supported by the [Gedcom
36
+ 5.5](http://homepages.rootsweb.ancestry.com/~pmcbride/gedcom/55gctoc.htm)
37
+ standard.
36
38
 
37
39
  ## LICENSE:
38
40
 
39
41
  (The MIT License)
40
42
 
41
- Copyright (c) 2006-2009 Keith Morrison <mailto:keithm@infused.org>, <http://www.infused.org>
43
+ Copyright (c) 2006-2010 Keith Morrison <mailto:keithm@infused.org>, <http://www.infused.org>
42
44
 
43
45
  Permission is hereby granted, free of charge, to any person obtaining
44
46
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ Jeweler::Tasks.new do |p|
13
13
  p.platform = Gem::Platform::RUBY
14
14
  p.authors = ['Keith Morrison']
15
15
  p.email = 'keithm@infused.org'
16
- p.add_dependency(%q<activesupport>, [">= 2.1.0"])
16
+ p.add_dependency(%q<activesupport>, ['=2.3.5'])
17
17
  p.homepage = 'http://github.com/infused/ansel_iconv'
18
18
  end
19
19
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
+ :patch: 4
2
3
  :major: 1
3
4
  :minor: 0
4
- :patch: 3
data/ansel_iconv.gemspec CHANGED
@@ -5,19 +5,18 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ansel_iconv}
8
- s.version = "1.0.3"
8
+ s.version = "1.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Keith Morrison"]
12
- s.date = %q{2009-12-04}
12
+ s.date = %q{2010-04-07}
13
13
  s.description = %q{Convert ANSEL encoded text to any other encoding available to Iconv}
14
14
  s.email = %q{keithm@infused.org}
15
15
  s.extra_rdoc_files = [
16
16
  "README.markdown"
17
17
  ]
18
18
  s.files = [
19
- ".gitignore",
20
- "History.txt",
19
+ "History.txt",
21
20
  "README.markdown",
22
21
  "Rakefile",
23
22
  "VERSION.yml",
@@ -29,7 +28,7 @@ Gem::Specification.new do |s|
29
28
  s.homepage = %q{http://github.com/infused/ansel_iconv}
30
29
  s.rdoc_options = ["--charset=UTF-8"]
31
30
  s.require_paths = ["lib"]
32
- s.rubygems_version = %q{1.3.5}
31
+ s.rubygems_version = %q{1.3.6}
33
32
  s.summary = %q{Convert ANSEL encoded text}
34
33
  s.test_files = [
35
34
  "test/ansel_iconv_test.rb",
@@ -41,11 +40,11 @@ Gem::Specification.new do |s|
41
40
  s.specification_version = 3
42
41
 
43
42
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
44
- s.add_runtime_dependency(%q<activesupport>, [">= 2.1.0"])
43
+ s.add_runtime_dependency(%q<activesupport>, ["= 2.3.5"])
45
44
  else
46
- s.add_dependency(%q<activesupport>, [">= 2.1.0"])
45
+ s.add_dependency(%q<activesupport>, ["= 2.3.5"])
47
46
  end
48
47
  else
49
- s.add_dependency(%q<activesupport>, [">= 2.1.0"])
48
+ s.add_dependency(%q<activesupport>, ["= 2.3.5"])
50
49
  end
51
50
  end
data/lib/ansel_iconv.rb CHANGED
@@ -1,3 +1,4 @@
1
+ gem 'activesupport', '=2.3.5'
1
2
  require 'active_support'
2
3
  require 'iconv'
3
4
 
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ansel_iconv
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 4
9
+ version: 1.0.4
5
10
  platform: ruby
6
11
  authors:
7
12
  - Keith Morrison
@@ -9,19 +14,23 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2009-12-04 00:00:00 -08:00
17
+ date: 2010-04-07 00:00:00 -07:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: activesupport
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
- - - ">="
25
+ - - "="
22
26
  - !ruby/object:Gem::Version
23
- version: 2.1.0
24
- version:
27
+ segments:
28
+ - 2
29
+ - 3
30
+ - 5
31
+ version: 2.3.5
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  description: Convert ANSEL encoded text to any other encoding available to Iconv
26
35
  email: keithm@infused.org
27
36
  executables: []
@@ -31,7 +40,6 @@ extensions: []
31
40
  extra_rdoc_files:
32
41
  - README.markdown
33
42
  files:
34
- - .gitignore
35
43
  - History.txt
36
44
  - README.markdown
37
45
  - Rakefile
@@ -53,18 +61,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
53
61
  requirements:
54
62
  - - ">="
55
63
  - !ruby/object:Gem::Version
64
+ segments:
65
+ - 0
56
66
  version: "0"
57
- version:
58
67
  required_rubygems_version: !ruby/object:Gem::Requirement
59
68
  requirements:
60
69
  - - ">="
61
70
  - !ruby/object:Gem::Version
71
+ segments:
72
+ - 0
62
73
  version: "0"
63
- version:
64
74
  requirements: []
65
75
 
66
76
  rubyforge_project:
67
- rubygems_version: 1.3.5
77
+ rubygems_version: 1.3.6
68
78
  signing_key:
69
79
  specification_version: 3
70
80
  summary: Convert ANSEL encoded text
data/.gitignore DELETED
@@ -1 +0,0 @@
1
- pkg/