imagesite 1.0.3 → 1.0.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c3abd4c946c4f8ae6ca32cb5c1039796d1c3c71a
4
- data.tar.gz: 877c5ad7845ec2992f043d4a20ad80dfa44e1ada
3
+ metadata.gz: 85f21bd34ab03fb3a0e995bc57944e08172e1c71
4
+ data.tar.gz: 3529f102c5549f7e6a3b4c7e236ffb88c240ebec
5
5
  SHA512:
6
- metadata.gz: e980538689ca9ca1dbe5c95d9f349ffc3a15cec284b0963e37e8ec8fbd623951c70c9f4c64e88e313bb726dbb982a02889738fe6228a880e56edfb0c6a0a059a
7
- data.tar.gz: 0a5d8a6da480301a2f1f8f5c211560d90dab0d12a9632d9e7a34ee8675f2376719b2b8edbfc29e4a7a9b784d483900c237141db4a744d665bd176b8bb2d994b4
6
+ metadata.gz: c612841004368c4cb95beeefb7c40763b639be4f7f84273876db06acc628cf1486b0f64745fbe23897c483d680d410e23d596c6b8153571becb5b031a71aa722
7
+ data.tar.gz: da9cb2a0fb204437720c3dc171a5ddeccb6ae7be9103efe0698ce7b7181d533f6c2bbf7e775c6dc9ca2d9fd8295824be7af86976e8a7f11aafe6927f5c06dd48
@@ -0,0 +1,2 @@
1
+ imagesite-dev
2
+ -global
@@ -0,0 +1,179 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ AllCops:
4
+ TargetRubyVersion: 2.0
5
+
6
+ # Customized cops
7
+
8
+ Layout/CaseIndentation:
9
+ IndentOneStep: true
10
+
11
+ Layout/DotPosition:
12
+ EnforcedStyle: trailing
13
+
14
+ Layout/SpaceInLambdaLiteral:
15
+ EnforcedStyle: require_space
16
+
17
+ Naming/PredicateName:
18
+ NamePrefixBlacklist:
19
+ - is_
20
+ Exclude:
21
+ - 'spec/**/*'
22
+
23
+ Style/Alias:
24
+ EnforcedStyle: prefer_alias_method
25
+
26
+ Style/BarePercentLiterals:
27
+ EnforcedStyle: percent_q
28
+
29
+ Style/BlockDelimiters:
30
+ EnforcedStyle: line_count_based
31
+
32
+ Style/FormatString:
33
+ EnforcedStyle: percent
34
+
35
+ Style/NumericLiterals:
36
+ MinDigits: 15
37
+
38
+ Style/PercentLiteralDelimiters:
39
+ PreferredDelimiters:
40
+ default: ()
41
+ '%i': '()'
42
+ '%I': '()'
43
+ '%r': '()'
44
+ '%w': '()'
45
+ '%W': '()'
46
+
47
+ Style/RedundantReturn:
48
+ AllowMultipleReturnValues: true
49
+
50
+ Style/RegexpLiteral:
51
+ EnforcedStyle: mixed
52
+
53
+ Style/SignalException:
54
+ EnforcedStyle: only_raise
55
+
56
+ Style/StabbyLambdaParentheses:
57
+ EnforcedStyle: require_no_parentheses
58
+
59
+ # Disabled cops
60
+
61
+ Layout/AlignArray:
62
+ Enabled: false
63
+ Layout/AlignHash:
64
+ Enabled: false
65
+ Layout/AlignParameters:
66
+ Enabled: false
67
+ Layout/EmptyLinesAroundBlockBody:
68
+ Enabled: false
69
+ Layout/EmptyLinesAroundClassBody:
70
+ Enabled: false
71
+ Layout/EmptyLinesAroundMethodBody:
72
+ Enabled: false
73
+ Layout/EmptyLinesAroundModuleBody:
74
+ Enabled: false
75
+ Layout/MultilineMethodCallBraceLayout:
76
+ Enabled: false
77
+ Layout/MultilineMethodCallIndentation:
78
+ Enabled: false
79
+ Layout/MultilineOperationIndentation:
80
+ Enabled: false
81
+ Layout/SpaceAfterNot:
82
+ Enabled: false
83
+
84
+ Lint/AmbiguousBlockAssociation:
85
+ Enabled: false
86
+
87
+ # These cops want parentheses that really aren't necessary
88
+ Lint/AmbiguousOperator:
89
+ Enabled: false
90
+ Lint/AmbiguousRegexpLiteral:
91
+ Enabled: false
92
+
93
+ # Gives false positives for Cucumber steps that aren't used
94
+ Lint/Debugger:
95
+ Enabled: false
96
+
97
+ # What else am I supposed to call the block variable when using find or each_with_object?
98
+ Lint/ShadowingOuterLocalVariable:
99
+ Enabled: false
100
+
101
+ # Objects to a usage needed to implement OAuth signing
102
+ Lint/UriEscapeUnescape:
103
+ Enabled: false
104
+
105
+ Metrics/AbcSize:
106
+ Enabled: false
107
+ Metrics/BlockLength:
108
+ Enabled: false
109
+ Metrics/ClassLength:
110
+ Enabled: false
111
+ Metrics/CyclomaticComplexity:
112
+ Enabled: false
113
+ Metrics/LineLength:
114
+ Enabled: false
115
+ Metrics/MethodLength:
116
+ Enabled: false
117
+ Metrics/ModuleLength:
118
+ Enabled: false
119
+ Metrics/ParameterLists:
120
+ Enabled: false
121
+ Metrics/PerceivedComplexity:
122
+ Enabled: false
123
+
124
+ Performance/RedundantMerge:
125
+ Enabled: false
126
+
127
+ Style/AsciiComments:
128
+ Enabled: false
129
+ Style/BracesAroundHashParameters:
130
+ Enabled: false
131
+ Style/ClassAndModuleChildren:
132
+ Enabled: false
133
+ Style/CommentAnnotation:
134
+ Enabled: false
135
+ Style/Documentation:
136
+ Enabled: false
137
+ Style/FormatStringToken:
138
+ Enabled: false
139
+ Style/FrozenStringLiteralComment:
140
+ Enabled: false
141
+ Style/GuardClause:
142
+ Enabled: false
143
+ Style/IfUnlessModifier:
144
+ Enabled: false
145
+ Style/MethodMissing:
146
+ Enabled: false
147
+ Style/MixinGrouping:
148
+ Enabled: false
149
+ Style/MultilineBlockChain:
150
+ Enabled: false
151
+ Style/MultilineTernaryOperator:
152
+ Enabled: false
153
+ Style/NegatedIf:
154
+ Enabled: false
155
+ Style/NestedParenthesizedCalls:
156
+ Enabled: false
157
+ Style/Next:
158
+ Enabled: false
159
+ Style/NumericPredicate:
160
+ Enabled: false
161
+ Style/RaiseArgs:
162
+ Enabled: false
163
+ Style/RedundantBegin:
164
+ Enabled: false
165
+ # Gives false positive on Cucumber step definitions
166
+ Style/RegexpLiteral:
167
+ Enabled: false
168
+ Style/StringLiterals:
169
+ Enabled: false
170
+ Style/StringLiteralsInInterpolation:
171
+ Enabled: false
172
+ Style/StructInheritance:
173
+ Enabled: false
174
+ Style/TernaryParentheses:
175
+ Enabled: false
176
+ Style/UnneededPercentQ:
177
+ Enabled: false
178
+ Style/WordArray:
179
+ Enabled: false
@@ -0,0 +1,7 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2018-01-03 06:05:50 -0800 using RuboCop version 0.50.0.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
@@ -0,0 +1 @@
1
+ 2.3.7
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  source 'https://rubygems.org/'
3
4
 
4
5
  gemspec
@@ -1,59 +1,75 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- imagesite (1.0.3)
5
- erubis (>= 2.7.0)
6
- exifr (>= 1.3.3)
7
- image_science (>= 1.3.0)
8
- xmp (>= 0.2.0)
4
+ imagesite (1.0.8)
5
+ erubis (~> 2.7)
6
+ exifr (~> 1.3)
7
+ image_science (~> 1.3)
8
+ xmp (~> 0.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- RubyInline (3.12.4)
13
+ RubyInline (3.12.5)
14
14
  ZenTest (~> 4.3)
15
- ZenTest (4.11.1)
16
- addressable (2.5.2)
17
- public_suffix (>= 2.0.2, < 4.0)
18
- capybara (2.16.1)
15
+ ZenTest (4.12.0)
16
+ addressable (2.7.0)
17
+ public_suffix (>= 2.0.2, < 5.0)
18
+ ast (2.4.1)
19
+ capybara (2.18.0)
19
20
  addressable
20
21
  mini_mime (>= 0.1.3)
21
22
  nokogiri (>= 1.3.3)
22
23
  rack (>= 1.0.0)
23
24
  rack-test (>= 0.5.4)
24
- xpath (~> 2.0)
25
- diff-lcs (1.3)
26
- docile (1.1.5)
25
+ xpath (>= 2.0, < 4.0)
26
+ diff-lcs (1.4.4)
27
+ docile (1.3.4)
27
28
  erubis (2.7.0)
28
- exifr (1.3.3)
29
- image_science (1.3.0)
29
+ exifr (1.3.9)
30
+ image_science (1.3.1)
30
31
  RubyInline (~> 3.9)
31
- json (2.1.0)
32
- mini_mime (1.0.0)
32
+ json (2.5.1)
33
+ mini_mime (1.0.2)
33
34
  nokogiri (1.5.11)
34
- public_suffix (2.0.5)
35
- rack (1.6.8)
36
- rack-test (0.7.0)
35
+ parallel (1.19.2)
36
+ parser (2.7.2.0)
37
+ ast (~> 2.4.1)
38
+ powerpack (0.1.3)
39
+ public_suffix (4.0.6)
40
+ rack (2.2.3)
41
+ rack-test (1.1.0)
37
42
  rack (>= 1.0, < 3)
38
- rake (12.3.0)
39
- rspec (3.7.0)
40
- rspec-core (~> 3.7.0)
41
- rspec-expectations (~> 3.7.0)
42
- rspec-mocks (~> 3.7.0)
43
- rspec-core (3.7.0)
44
- rspec-support (~> 3.7.0)
45
- rspec-expectations (3.7.0)
43
+ rainbow (2.2.2)
44
+ rake
45
+ rake (13.0.3)
46
+ rspec (3.10.0)
47
+ rspec-core (~> 3.10.0)
48
+ rspec-expectations (~> 3.10.0)
49
+ rspec-mocks (~> 3.10.0)
50
+ rspec-core (3.10.0)
51
+ rspec-support (~> 3.10.0)
52
+ rspec-expectations (3.10.0)
46
53
  diff-lcs (>= 1.2.0, < 2.0)
47
- rspec-support (~> 3.7.0)
48
- rspec-mocks (3.7.0)
54
+ rspec-support (~> 3.10.0)
55
+ rspec-mocks (3.10.0)
49
56
  diff-lcs (>= 1.2.0, < 2.0)
50
- rspec-support (~> 3.7.0)
51
- rspec-support (3.7.0)
52
- simplecov (0.15.1)
53
- docile (~> 1.1.0)
57
+ rspec-support (~> 3.10.0)
58
+ rspec-support (3.10.0)
59
+ rubocop (0.50.0)
60
+ parallel (~> 1.10)
61
+ parser (>= 2.3.3.1, < 3.0)
62
+ powerpack (~> 0.1)
63
+ rainbow (>= 2.2.2, < 3.0)
64
+ ruby-progressbar (~> 1.7)
65
+ unicode-display_width (~> 1.0, >= 1.0.1)
66
+ ruby-progressbar (1.10.1)
67
+ simplecov (0.17.1)
68
+ docile (~> 1.1)
54
69
  json (>= 1.8, < 3)
55
70
  simplecov-html (~> 0.10.0)
56
71
  simplecov-html (0.10.2)
72
+ unicode-display_width (1.7.0)
57
73
  xmp (0.2.0)
58
74
  nokogiri (~> 1.5.0)
59
75
  xpath (2.1.0)
@@ -63,15 +79,13 @@ PLATFORMS
63
79
  ruby
64
80
 
65
81
  DEPENDENCIES
66
- bundler (>= 1.12.5)
67
- capybara (>= 2.16.1)
82
+ bundler (~> 2.0)
83
+ capybara (~> 2.18)
68
84
  imagesite!
69
- public_suffix (~> 2.0)
70
- rack (~> 1.6)
71
- rack-test (~> 0.7.0)
72
- rake (>= 12.3.0)
73
- rspec (>= 3.7.0)
74
- simplecov (>= 0.15.1)
85
+ rake (~> 13.0)
86
+ rspec (~> 3.10)
87
+ rubocop (= 0.50.0)
88
+ simplecov (~> 0.17.0)
75
89
 
76
90
  BUNDLED WITH
77
- 1.16.0
91
+ 2.0.2
data/README.md CHANGED
@@ -11,7 +11,7 @@ its title and description.
11
11
 
12
12
  ## Requirements
13
13
 
14
- imagesite works with Ruby 2.0.0p648, which comes with OS X 10.11 (El Capitan),
14
+ imagesite works with Ruby 2.3.7, which comes with OS X 10.12 (Sierra),
15
15
  and with later versions of Ruby.
16
16
  If your Mac has an older OS X, imagesite may or may not work with its built-in Ruby.
17
17
  If not, you may be able to install a newer Ruby on your Mac to use with imagesite.
data/Rakefile CHANGED
@@ -3,4 +3,4 @@ require "rspec/core/rake_task"
3
3
 
4
4
  RSpec::Core::RakeTask.new(:spec)
5
5
 
6
- task :default => :spec
6
+ task default: :spec
@@ -1,35 +1,30 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'imagesite'
3
- spec.version = '1.0.3'
3
+ spec.version = '1.0.8'
4
4
  spec.author = 'Dave Schweisguth'
5
5
  spec.email = 'dave@schweisguth.org'
6
6
 
7
- spec.summary = %q{iPhoto-style web export for Photos}
8
- spec.description = %q{OS X's iPhoto software had a feature that exported photos to a static web site. iPhoto was discontinued in 2015. Its replacement, Photos, does not have that feature. imagesite approximates that feature.}
7
+ spec.summary = %q(iPhoto-style web export for Photos)
8
+ spec.description = %q(OS X's iPhoto software had a feature that exported photos to a static web site. iPhoto was discontinued in 2015. Its replacement, Photos, does not have that feature. imagesite approximates that feature.)
9
9
  spec.homepage = 'https://github.com/dschweisguth/imagesite'
10
10
  spec.license = 'MIT'
11
11
 
12
12
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(.gitignore|.idea/|.rspec|spec/)}) }
13
13
  spec.bindir = 'bin'
14
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.executables = spec.files.grep(%r(^bin/)) { |f| File.basename(f) }
15
15
 
16
- spec.required_ruby_version = '~> 2.0'
16
+ spec.required_ruby_version = '~> 2.3'
17
17
 
18
- spec.add_runtime_dependency 'exifr', '>= 1.3.3'
19
- spec.add_runtime_dependency 'xmp', '>= 0.2.0'
20
- spec.add_runtime_dependency 'image_science', '>= 1.3.0'
21
- spec.add_runtime_dependency 'erubis', '>= 2.7.0'
18
+ spec.add_runtime_dependency 'exifr', '~> 1.3'
19
+ spec.add_runtime_dependency 'xmp', '~> 0.2'
20
+ spec.add_runtime_dependency 'image_science', '~> 1.3'
21
+ spec.add_runtime_dependency 'erubis', '~> 2.7'
22
22
 
23
- spec.add_development_dependency 'bundler', '>= 1.12.5'
24
- spec.add_development_dependency 'rake', '>= 12.3.0'
25
- spec.add_development_dependency 'rspec', '>= 3.7.0'
26
- spec.add_development_dependency 'capybara', '>= 2.16.1'
27
- spec.add_development_dependency 'simplecov', '>= 0.15.1'
28
-
29
- # The following are not directly required by this gem but are directly or indirectly required by capybara.
30
- # They are here so they can be constrained to versions compatible with the lowest supported version of Ruby.
31
- spec.add_development_dependency 'public_suffix', '~> 2.0'
32
- spec.add_development_dependency 'rack', '~> 1.6' # required by capybara
33
- spec.add_development_dependency 'rack-test', '~> 0.7.0' # required by capybara
23
+ spec.add_development_dependency 'bundler', '~> 2.0'
24
+ spec.add_development_dependency 'capybara', '~> 2.18' # later versions require nokogiri newer than than the newest version compatible with xmp
25
+ spec.add_development_dependency 'rake', '~> 13.0'
26
+ spec.add_development_dependency 'rspec', '~> 3.10'
27
+ spec.add_development_dependency 'rubocop', '0.50.0'
28
+ spec.add_development_dependency 'simplecov', '~> 0.17.0' # later versions require Ruby newer than that which comes with Sierra (2.3)
34
29
 
35
30
  end
@@ -42,17 +42,18 @@ module ImageSite
42
42
  end
43
43
 
44
44
  def title
45
- xmp && xmp.dc && xmp.dc.respond_to?(:title) && xmp.dc.title && xmp.dc.title.first
45
+ title = dc(:title)
46
+ title && title.first || nil
46
47
  end
47
48
 
48
49
  NEWLINE = "\xE2\x80\xA8".force_encoding('ASCII-8BIT')
49
50
 
50
51
  def description
51
- exif && exif.image_description && exif.image_description.gsub(NEWLINE, "<br/>\n")
52
+ exif && exif.image_description && exif.image_description.gsub(NEWLINE, "<br/>\n").force_encoding('utf-8')
52
53
  end
53
54
 
54
55
  def tags
55
- xmp && xmp.dc && xmp.dc.respond_to?(:subject) && xmp.dc.subject || []
56
+ dc(:subject) || []
56
57
  end
57
58
 
58
59
  def relative_html
@@ -78,6 +79,10 @@ module ImageSite
78
79
  end
79
80
  end
80
81
 
82
+ def dc(property)
83
+ xmp && xmp.respond_to?(:dc) && xmp.dc && xmp.dc.respond_to?(property) && xmp.dc.send(property)
84
+ end
85
+
81
86
  def xmp
82
87
  @xmp ||= XMP.parse exif
83
88
  end
@@ -6,7 +6,7 @@ module ImageSite
6
6
 
7
7
  def self.template
8
8
  @template ||= IO.read File.expand_path(
9
- "#{File.dirname __FILE__}/../../template/#{template_name}")
9
+ "#{File.dirname __FILE__}/../../template/#{template_name}")
10
10
  end
11
11
 
12
12
  def initialize(number, options)
@@ -18,7 +18,7 @@ module ImageSite
18
18
 
19
19
  def parse!
20
20
  parser = OptionParser.new do |op|
21
- op.banner = "Usage: #{$0} -t TITLE -o OUTPUT_DIR [other options] file [...]"
21
+ op.banner = "Usage: #{$PROGRAM_NAME} -t TITLE -o OUTPUT_DIR [other options] file [...]"
22
22
 
23
23
  op.on('-t TITLE', "Title of the set of images") do |title|
24
24
  @title = title
metadata CHANGED
@@ -1,183 +1,155 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imagesite
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Schweisguth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-03 00:00:00.000000000 Z
11
+ date: 2020-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: exifr
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.3.3
19
+ version: '1.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.3.3
26
+ version: '1.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: xmp
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.2.0
33
+ version: '0.2'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.2.0
40
+ version: '0.2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: image_science
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.3.0
47
+ version: '1.3'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.3.0
54
+ version: '1.3'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: erubis
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 2.7.0
61
+ version: '2.7'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 2.7.0
68
+ version: '2.7'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: bundler
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 1.12.5
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - '>='
81
- - !ruby/object:Gem::Version
82
- version: 1.12.5
83
- - !ruby/object:Gem::Dependency
84
- name: rake
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - '>='
88
- - !ruby/object:Gem::Version
89
- version: 12.3.0
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - '>='
95
- - !ruby/object:Gem::Version
96
- version: 12.3.0
97
- - !ruby/object:Gem::Dependency
98
- name: rspec
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - '>='
102
- - !ruby/object:Gem::Version
103
- version: 3.7.0
75
+ version: '2.0'
104
76
  type: :development
105
77
  prerelease: false
106
78
  version_requirements: !ruby/object:Gem::Requirement
107
79
  requirements:
108
- - - '>='
80
+ - - "~>"
109
81
  - !ruby/object:Gem::Version
110
- version: 3.7.0
82
+ version: '2.0'
111
83
  - !ruby/object:Gem::Dependency
112
84
  name: capybara
113
85
  requirement: !ruby/object:Gem::Requirement
114
86
  requirements:
115
- - - '>='
87
+ - - "~>"
116
88
  - !ruby/object:Gem::Version
117
- version: 2.16.1
89
+ version: '2.18'
118
90
  type: :development
119
91
  prerelease: false
120
92
  version_requirements: !ruby/object:Gem::Requirement
121
93
  requirements:
122
- - - '>='
94
+ - - "~>"
123
95
  - !ruby/object:Gem::Version
124
- version: 2.16.1
96
+ version: '2.18'
125
97
  - !ruby/object:Gem::Dependency
126
- name: simplecov
98
+ name: rake
127
99
  requirement: !ruby/object:Gem::Requirement
128
100
  requirements:
129
- - - '>='
101
+ - - "~>"
130
102
  - !ruby/object:Gem::Version
131
- version: 0.15.1
103
+ version: '13.0'
132
104
  type: :development
133
105
  prerelease: false
134
106
  version_requirements: !ruby/object:Gem::Requirement
135
107
  requirements:
136
- - - '>='
108
+ - - "~>"
137
109
  - !ruby/object:Gem::Version
138
- version: 0.15.1
110
+ version: '13.0'
139
111
  - !ruby/object:Gem::Dependency
140
- name: public_suffix
112
+ name: rspec
141
113
  requirement: !ruby/object:Gem::Requirement
142
114
  requirements:
143
- - - ~>
115
+ - - "~>"
144
116
  - !ruby/object:Gem::Version
145
- version: '2.0'
117
+ version: '3.10'
146
118
  type: :development
147
119
  prerelease: false
148
120
  version_requirements: !ruby/object:Gem::Requirement
149
121
  requirements:
150
- - - ~>
122
+ - - "~>"
151
123
  - !ruby/object:Gem::Version
152
- version: '2.0'
124
+ version: '3.10'
153
125
  - !ruby/object:Gem::Dependency
154
- name: rack
126
+ name: rubocop
155
127
  requirement: !ruby/object:Gem::Requirement
156
128
  requirements:
157
- - - ~>
129
+ - - '='
158
130
  - !ruby/object:Gem::Version
159
- version: '1.6'
131
+ version: 0.50.0
160
132
  type: :development
161
133
  prerelease: false
162
134
  version_requirements: !ruby/object:Gem::Requirement
163
135
  requirements:
164
- - - ~>
136
+ - - '='
165
137
  - !ruby/object:Gem::Version
166
- version: '1.6'
138
+ version: 0.50.0
167
139
  - !ruby/object:Gem::Dependency
168
- name: rack-test
140
+ name: simplecov
169
141
  requirement: !ruby/object:Gem::Requirement
170
142
  requirements:
171
- - - ~>
143
+ - - "~>"
172
144
  - !ruby/object:Gem::Version
173
- version: 0.7.0
145
+ version: 0.17.0
174
146
  type: :development
175
147
  prerelease: false
176
148
  version_requirements: !ruby/object:Gem::Requirement
177
149
  requirements:
178
- - - ~>
150
+ - - "~>"
179
151
  - !ruby/object:Gem::Version
180
- version: 0.7.0
152
+ version: 0.17.0
181
153
  description: OS X's iPhoto software had a feature that exported photos to a static
182
154
  web site. iPhoto was discontinued in 2015. Its replacement, Photos, does not have
183
155
  that feature. imagesite approximates that feature.
@@ -187,6 +159,10 @@ executables:
187
159
  extensions: []
188
160
  extra_rdoc_files: []
189
161
  files:
162
+ - ".rbenv-gemsets"
163
+ - ".rubocop.yml"
164
+ - ".rubocop_todo.yml"
165
+ - ".ruby-version"
190
166
  - Gemfile
191
167
  - Gemfile.lock
192
168
  - LICENSE.txt
@@ -211,17 +187,17 @@ require_paths:
211
187
  - lib
212
188
  required_ruby_version: !ruby/object:Gem::Requirement
213
189
  requirements:
214
- - - ~>
190
+ - - "~>"
215
191
  - !ruby/object:Gem::Version
216
- version: '2.0'
192
+ version: '2.3'
217
193
  required_rubygems_version: !ruby/object:Gem::Requirement
218
194
  requirements:
219
- - - '>='
195
+ - - ">="
220
196
  - !ruby/object:Gem::Version
221
197
  version: '0'
222
198
  requirements: []
223
199
  rubyforge_project:
224
- rubygems_version: 2.0.14.1
200
+ rubygems_version: 2.5.2.3
225
201
  signing_key:
226
202
  specification_version: 4
227
203
  summary: iPhoto-style web export for Photos