dwc-archive 0.1.3 → 0.1.4

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 (5) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/dwc-archive.gemspec +4 -3
  4. data/t +74 -0
  5. metadata +4 -3
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "dwc-archive"
8
8
  gem.summary = %Q{Handler of Darwin Core Archive files}
9
- gem.description = %Q{Darwin Core Archive Files are current standard exchange format for GLobal Names Architecture modules. This project creates ways to work with such files.}
9
+ gem.description = %q{Darwin Core Archive is the current standard exchange format for GLobal Names Architecture modules. This gem makes it easy to incorporate files in Darwin Core Archive format into a ruby project.}
10
10
  gem.email = "dmozzherin at gmail dot com"
11
11
  gem.homepage = "http://github.com/dimus/dwc-archive"
12
12
  gem.authors = ["Dmitry Mozzherin"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dwc-archive}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dmitry Mozzherin"]
12
12
  s.date = %q{2010-03-18}
13
- s.description = %q{Darwin Core Archive Files are current standard exchange format for GLobal Names Architecture modules. This project creates ways to work with such files.}
13
+ s.description = %q{Darwin Core Archive is the current standard exchange format for GLobal Names Architecture modules. This gem makes it easy to incorporate files in Darwin Core Archive format into a ruby project.}
14
14
  s.email = %q{dmozzherin at gmail dot com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
@@ -42,7 +42,8 @@ Gem::Specification.new do |s|
42
42
  "spec/files/meta.xml",
43
43
  "spec/lib/ruby_extenstions_spec.rb",
44
44
  "spec/spec.opts",
45
- "spec/spec_helper.rb"
45
+ "spec/spec_helper.rb",
46
+ "t"
46
47
  ]
47
48
  s.homepage = %q{http://github.com/dimus/dwc-archive}
48
49
  s.rdoc_options = ["--charset=UTF-8"]
data/t ADDED
@@ -0,0 +1,74 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{dwc-archive}
8
+ s.version = "0.1.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Dmitry Mozzherin"]
12
+ s.date = %q{2010-03-18}
13
+ s.description = %q{Darwin Core Archive is the current standard exchange format for GLobal Names Architecture modules. This gem makes it easy to incorporate files in Darwin Core Archive format into a ruby project.}
14
+ s.email = %q{dmozzherin at gmail dot com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "dwc-archive.gemspec",
27
+ "features/dwc-archive.feature",
28
+ "features/step_definitions/dwc-archive_steps.rb",
29
+ "features/support/env.rb",
30
+ "lib/dwc-archive.rb",
31
+ "lib/dwc-archive/.expander.rb.swo",
32
+ "lib/dwc-archive/archive.rb",
33
+ "lib/dwc-archive/core.rb",
34
+ "lib/dwc-archive/expander.rb",
35
+ "lib/dwc-archive/extension.rb",
36
+ "lib/dwc-archive/metadata.rb",
37
+ "lib/ruby_extensions.rb",
38
+ "spec/dwc-archive_spec.rb",
39
+ "spec/files/data.tar.gz",
40
+ "spec/files/data.zip",
41
+ "spec/files/eml.xml",
42
+ "spec/files/meta.xml",
43
+ "spec/lib/ruby_extenstions_spec.rb",
44
+ "spec/spec.opts",
45
+ "spec/spec_helper.rb"
46
+ ]
47
+ s.homepage = %q{http://github.com/dimus/dwc-archive}
48
+ s.rdoc_options = ["--charset=UTF-8"]
49
+ s.require_paths = ["lib"]
50
+ s.rubygems_version = %q{1.3.6}
51
+ s.summary = %q{Handler of Darwin Core Archive files}
52
+ s.test_files = [
53
+ "spec/dwc-archive_spec.rb",
54
+ "spec/lib/ruby_extenstions_spec.rb",
55
+ "spec/spec_helper.rb"
56
+ ]
57
+
58
+ if s.respond_to? :specification_version then
59
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
60
+ s.specification_version = 3
61
+
62
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
63
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
64
+ s.add_development_dependency(%q<cucumber>, [">= 0"])
65
+ else
66
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
67
+ s.add_dependency(%q<cucumber>, [">= 0"])
68
+ end
69
+ else
70
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
71
+ s.add_dependency(%q<cucumber>, [">= 0"])
72
+ end
73
+ end
74
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 3
9
- version: 0.1.3
8
+ - 4
9
+ version: 0.1.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dmitry Mozzherin
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: "0"
44
44
  type: :development
45
45
  version_requirements: *id002
46
- description: Darwin Core Archive Files are current standard exchange format for GLobal Names Architecture modules. This project creates ways to work with such files.
46
+ description: Darwin Core Archive is the current standard exchange format for GLobal Names Architecture modules. This gem makes it easy to incorporate files in Darwin Core Archive format into a ruby project.
47
47
  email: dmozzherin at gmail dot com
48
48
  executables: []
49
49
 
@@ -79,6 +79,7 @@ files:
79
79
  - spec/lib/ruby_extenstions_spec.rb
80
80
  - spec/spec.opts
81
81
  - spec/spec_helper.rb
82
+ - t
82
83
  has_rdoc: true
83
84
  homepage: http://github.com/dimus/dwc-archive
84
85
  licenses: []