-
Notifications
You must be signed in to change notification settings - Fork 20
/
css_sprite.gemspec
22 lines (19 loc) · 968 Bytes
/
css_sprite.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/css_sprite/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Richard Huang"]
gem.email = ["[email protected]"]
gem.description = %q{css_sprite is a rails plugin/gem to generate css sprite image automatically.}
gem.summary = %q{css_sprite is a rails plugin/gem to generate css sprite image automatically.}
gem.homepage = "https://github.com/flyerhzm/css_sprite"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "css_sprite"
gem.require_paths = ["lib"]
gem.version = CssSprite::VERSION
gem.add_runtime_dependency("mini_magick")
gem.add_development_dependency("rake")
gem.add_development_dependency("rspec")
gem.add_development_dependency("mocha")
end