qoobaa-vcard 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/vcard/vcard.rb +1 -0
  3. data/vcard.gemspec +54 -0
  4. metadata +2 -1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/lib/vcard/vcard.rb CHANGED
@@ -682,6 +682,7 @@ module Vpim
682
682
  string = string.unpack('v*').pack('U*')
683
683
  end
684
684
 
685
+ string.force_encoding(Encoding::UTF_8)
685
686
  entities = Vpim.expand(Vpim.decode(string))
686
687
 
687
688
  # Since all vCards must have a begin/end, the top-level should consist
data/vcard.gemspec ADDED
@@ -0,0 +1,54 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{vcard}
5
+ s.version = "0.1.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Jakub Kuźma"]
9
+ s.date = %q{2009-05-26}
10
+ s.email = %q{qoobaa@gmail.com}
11
+ s.extra_rdoc_files = [
12
+ "LICENSE",
13
+ "README.rdoc"
14
+ ]
15
+ s.files = [
16
+ ".document",
17
+ ".gitignore",
18
+ "LICENSE",
19
+ "README.rdoc",
20
+ "Rakefile",
21
+ "VERSION",
22
+ "lib/vcard.rb",
23
+ "lib/vcard/attachment.rb",
24
+ "lib/vcard/dirinfo.rb",
25
+ "lib/vcard/enumerator.rb",
26
+ "lib/vcard/field.rb",
27
+ "lib/vcard/rfc2425.rb",
28
+ "lib/vcard/vcard.rb",
29
+ "test/field_test.rb",
30
+ "test/test_helper.rb",
31
+ "test/vcard_test.rb",
32
+ "vcard.gemspec"
33
+ ]
34
+ s.homepage = %q{http://github.com/qoobaa/vcard}
35
+ s.rdoc_options = ["--charset=UTF-8"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = %q{1.3.3}
38
+ s.summary = %q{Vcard support extracted from Vpim (Ruby 1.9.1 compatible)}
39
+ s.test_files = [
40
+ "test/field_test.rb",
41
+ "test/test_helper.rb",
42
+ "test/vcard_test.rb"
43
+ ]
44
+
45
+ if s.respond_to? :specification_version then
46
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
47
+ s.specification_version = 3
48
+
49
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
+ else
51
+ end
52
+ else
53
+ end
54
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qoobaa-vcard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Jakub Ku\xC5\xBAma"
@@ -39,6 +39,7 @@ files:
39
39
  - test/field_test.rb
40
40
  - test/test_helper.rb
41
41
  - test/vcard_test.rb
42
+ - vcard.gemspec
42
43
  has_rdoc: false
43
44
  homepage: http://github.com/qoobaa/vcard
44
45
  post_install_message: