thbar-diacritics_fu 1.0.2 → 1.0.3

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.yml +4 -0
  2. metadata +17 -26
  3. data/Rakefile +0 -18
  4. data/diacritics_fu.gemspec +0 -25
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 1
3
+ :minor: 0
4
+ :patch: 3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thbar-diacritics_fu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Thibaut Barr\xC3\xA8re"
@@ -9,44 +9,36 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-10 00:00:00 -08:00
12
+ date: 2009-03-29 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: activesupport
17
- version_requirement:
18
- version_requirements: !ruby/object:Gem::Requirement
19
- requirements:
20
- - - ">"
21
- - !ruby/object:Gem::Version
22
- version: 0.0.0
23
- version:
24
- description: A small library to remove accents from a string.
14
+ dependencies: []
15
+
16
+ description: TODO
25
17
  email: thibaut.barrere@gmail.com
26
18
  executables: []
27
19
 
28
20
  extensions: []
29
21
 
30
22
  extra_rdoc_files:
31
- - History.txt
32
- - Manifest.txt
33
23
  - README
34
24
  files:
35
25
  - History.txt
36
- - README
37
- - Rakefile
38
26
  - Manifest.txt
39
- - diacritics_fu.gemspec
40
- - lib/diacritics_fu.rb
27
+ - VERSION.yml
28
+ - lib/diacritics_fu
41
29
  - lib/diacritics_fu/new_escaper.rb
42
30
  - lib/diacritics_fu/new_escaper_kcode_utf8.rb
43
31
  - lib/diacritics_fu/old_escaper.rb
32
+ - lib/diacritics_fu.rb
33
+ - spec/diacritics_fu_spec.rb
34
+ - spec/spec_helper.rb
35
+ - README
44
36
  has_rdoc: true
45
37
  homepage: http://github.com/thbar/diacritics_fu
46
38
  post_install_message:
47
39
  rdoc_options:
48
- - --main
49
- - README
40
+ - --inline-source
41
+ - --charset=UTF-8
50
42
  require_paths:
51
43
  - lib
52
44
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -63,11 +55,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
63
55
  version:
64
56
  requirements: []
65
57
 
66
- rubyforge_project:
58
+ rubyforge_project: diacritics_fu
67
59
  rubygems_version: 1.2.0
68
60
  signing_key:
69
61
  specification_version: 2
70
- summary: Tiny Ruby library to remove accents and other diacritics from a string (relies on ActiveSupport).
71
- test_files:
72
- - spec/diacritics_fu_spec.rb
73
- - spec/spec_helper.rb
62
+ summary: A small library to remove accents from a string. Relies on ActiveSupport.
63
+ test_files: []
64
+
data/Rakefile DELETED
@@ -1,18 +0,0 @@
1
- require 'rubygems'
2
- require 'spec'
3
- require 'spec/rake/spectask'
4
-
5
- task :default => :spec
6
-
7
- desc "run specs for the gem"
8
- Spec::Rake::SpecTask.new(:spec) do |t|
9
- t.spec_files = FileList["spec/**/*_spec.rb"]
10
- end
11
-
12
- desc "run specs for the gem against all available activesupport versions"
13
- task :spec_multi do
14
- # hmm - there's probably a better way to write this
15
- IO.popen("gem list activesupport").readlines.last.split(',').grep(/(\d\.\d\.\d)/) { $1 }.each do |version|
16
- throw "Failed against ActiveSupport v#{version}" unless system("rake spec DIACRITICS_FU_ACTIVESUPPORT_VERSION=#{version}")
17
- end
18
- end
@@ -1,25 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "diacritics_fu"
3
- s.version = "1.0.2"
4
- s.date = "2008-12-10"
5
- s.summary = "Tiny Ruby library to remove accents and other diacritics from a string (relies on ActiveSupport)."
6
- s.email = "thibaut.barrere@gmail.com"
7
- s.homepage = "http://github.com/thbar/diacritics_fu"
8
- s.description = "A small library to remove accents from a string."
9
- s.has_rdoc = true
10
- s.authors = ["Thibaut Barrère"]
11
- s.files = ["History.txt",
12
- "README",
13
- "Rakefile",
14
- "Manifest.txt",
15
- "diacritics_fu.gemspec",
16
- "lib/diacritics_fu.rb",
17
- "lib/diacritics_fu/new_escaper.rb",
18
- "lib/diacritics_fu/new_escaper_kcode_utf8.rb",
19
- "lib/diacritics_fu/old_escaper.rb"]
20
- s.test_files = ["spec/diacritics_fu_spec.rb","spec/spec_helper.rb"]
21
-
22
- s.rdoc_options = ["--main", "README"]
23
- s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README"]
24
- s.add_dependency("activesupport", ["> 0.0.0"])
25
- end