forked from davidcelis/quiet_safari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiet_safari.gemspec
27 lines (21 loc) · 945 Bytes
/
quiet_safari.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'quiet_safari/version'
Gem::Specification.new do |spec|
spec.name = 'quiet_safari'
spec.version = QuietSafari::VERSION
spec.authors = ['David Celis']
spec.email = ['[email protected]']
spec.summary = %q{Because who cares about the apple-touch-icon?}
spec.description = <<-DESCRIPTION
Get rid of ActionController::RoutingErrors that happen when Safari requests PNGs
that don't exist, such as `apple-touch-icon.png` or, of course, the illustrious
`apple-touch-icon-precomposed.png`. Because who cares?
DESCRIPTION
spec.homepage = 'https://github.com/davidcelis/quiet_safari'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb']
spec.test_files = Dir['test/**/*.{rb,gemfile}']
spec.require_paths = ['lib']
spec.add_dependency 'railties', '>= 3.1.0'
spec.add_development_dependency 'minitest'
end