aperture 0.3.0 → 0.3.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.
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/aperture.gemspec +4 -1
- metadata +12 -3
data/Rakefile
CHANGED
|
@@ -10,6 +10,7 @@ begin
|
|
|
10
10
|
gem.email = "kyle.burckhard@gmail.com"
|
|
11
11
|
gem.homepage = "http://github.com/talaris/aperture"
|
|
12
12
|
gem.authors = ["Kyle Burckhard"]
|
|
13
|
+
gem.add_dependency('plist', '>= 3.0.0')
|
|
13
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
14
15
|
end
|
|
15
16
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.1
|
data/aperture.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{aperture}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Kyle Burckhard"]
|
|
@@ -190,9 +190,12 @@ Gem::Specification.new do |s|
|
|
|
190
190
|
s.specification_version = 3
|
|
191
191
|
|
|
192
192
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
193
|
+
s.add_runtime_dependency(%q<plist>, [">= 3.0.0"])
|
|
193
194
|
else
|
|
195
|
+
s.add_dependency(%q<plist>, [">= 3.0.0"])
|
|
194
196
|
end
|
|
195
197
|
else
|
|
198
|
+
s.add_dependency(%q<plist>, [">= 3.0.0"])
|
|
196
199
|
end
|
|
197
200
|
end
|
|
198
201
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aperture
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Burckhard
|
|
@@ -11,8 +11,17 @@ cert_chain: []
|
|
|
11
11
|
|
|
12
12
|
date: 2009-12-16 00:00:00 -08:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: plist
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 3.0.0
|
|
24
|
+
version:
|
|
16
25
|
description: Parses out the files from a Aperture Photo Library to give useful figures and check consistancy of the Library itself.
|
|
17
26
|
email: kyle.burckhard@gmail.com
|
|
18
27
|
executables: []
|