-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathretina_tag.gemspec
More file actions
20 lines (18 loc) · 871 Bytes
/
retina_tag.gemspec
File metadata and controls
20 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/retina_tag/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["David Estes"]
gem.email = ["destes@redwindsw.com"]
gem.description = "This gem overrides image_tag to support retina resolution images using asset pipeline"
gem.summary = "image_tag addon for retina graphics, with cache support."
gem.homepage = "http://github.com/davydotcom/retina_tag"
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "retina_tag"
gem.require_paths = ["lib"]
gem.version = RetinaTag::VERSION
gem.add_dependency "rails", ">= 3.1"
gem.add_development_dependency "jquery-rails"
end