aperture 0.3.3 → 0.3.5
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/CHANGELOG +6 -0
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/aperture.gemspec +5 -2
- data/lib/aperture/library.rb +1 -1
- metadata +12 -2
data/CHANGELOG
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
== 0.3.5 / 2009-12-22
|
2
|
+
* Fixed a bug introduced in 0.3.3 when not using verbose output
|
3
|
+
|
4
|
+
== 0.3.4 / 2009-12-22
|
5
|
+
* Added missing development dependency for shoulda
|
6
|
+
|
1
7
|
== 0.3.3 / 2009-12-20
|
2
8
|
* Added verbose output on Library#parse, optional dependency on ruby-progressbar
|
3
9
|
|
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_development_dependency "shoulda", ">= 2.10.0"
|
13
14
|
gem.add_dependency('plist', '>= 3.0.0')
|
14
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
16
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.5
|
data/aperture.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
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.5"
|
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"]
|
12
|
-
s.date = %q{2009-12-
|
12
|
+
s.date = %q{2009-12-25}
|
13
13
|
s.description = %q{Parses out the files from a Aperture Photo Library to give useful figures and check consistancy of the Library itself.}
|
14
14
|
s.email = %q{kyle.burckhard@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -191,11 +191,14 @@ Gem::Specification.new do |s|
|
|
191
191
|
s.specification_version = 3
|
192
192
|
|
193
193
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
194
|
+
s.add_development_dependency(%q<shoulda>, [">= 2.10.0"])
|
194
195
|
s.add_runtime_dependency(%q<plist>, [">= 3.0.0"])
|
195
196
|
else
|
197
|
+
s.add_dependency(%q<shoulda>, [">= 2.10.0"])
|
196
198
|
s.add_dependency(%q<plist>, [">= 3.0.0"])
|
197
199
|
end
|
198
200
|
else
|
201
|
+
s.add_dependency(%q<shoulda>, [">= 2.10.0"])
|
199
202
|
s.add_dependency(%q<plist>, [">= 3.0.0"])
|
200
203
|
end
|
201
204
|
end
|
data/lib/aperture/library.rb
CHANGED
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Burckhard
|
@@ -9,9 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-12-
|
12
|
+
date: 2009-12-25 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: shoulda
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.10.0
|
24
|
+
version:
|
15
25
|
- !ruby/object:Gem::Dependency
|
16
26
|
name: plist
|
17
27
|
type: :runtime
|