bagit 0.0.3 → 0.0.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 (2) hide show
  1. data/bagit.gemspec +6 -3
  2. metadata +13 -4
data/bagit.gemspec CHANGED
@@ -1,17 +1,20 @@
1
+ require 'semver'
2
+
1
3
  Gem::Specification.new do |spec|
2
4
  spec.name = "bagit"
3
- spec.version = '0.0.3'
5
+ spec.version = SemVer.find.format '%M.%m.%p'
4
6
  spec.summary = "BagIt package generation and validation"
5
7
  spec.description = "Ruby Library and Command Line tools for bagit"
6
8
  spec.email = "flazzarino@gmail.com"
7
9
  spec.homepage = 'http://github.com/flazz/bagit'
8
10
  spec.authors = ["Francesco Lazzarino"]
9
-
11
+
10
12
  spec.files = ["Rakefile", "bagit.gemspec", "lib/bagit/bag.rb",
11
13
  "lib/bagit/fetch.rb", "lib/bagit/file.rb",
12
14
  "lib/bagit/info.rb", "lib/bagit/manifest.rb",
13
15
  "lib/bagit/string.rb", "lib/bagit/valid.rb",
14
16
  "lib/bagit.rb" ]
15
-
17
+
16
18
  spec.has_rdoc = true
19
+ spec.add_dependency 'semver', '~> 0.1.0'
17
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bagit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco Lazzarino
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-29 00:00:00 -04:00
12
+ date: 2010-04-01 00:00:00 -04:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: semver
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 0.1.0
24
+ version:
16
25
  description: Ruby Library and Command Line tools for bagit
17
26
  email: flazzarino@gmail.com
18
27
  executables: []