forked from hagenburger/lemonade
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlemonade.gemspec
More file actions
31 lines (23 loc) · 1.09 KB
/
lemonade.gemspec
File metadata and controls
31 lines (23 loc) · 1.09 KB
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
28
29
30
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/lemonade/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'wikyd-lemonade'
s.version = Lemonade::Version
s.date = Time.now.strftime '%Y-%m-%d'
s.required_rubygems_version = '>= 1.3.6'
s.authors = ['Nico Hagenburger']
s.email = 'kai@wikyd.org'
s.homepage = 'http://github.com/wikyd/lemonade'
s.summary = 'On the fly sprite generator for Sass/Compass; Forked from hagenburger/lemonade'
s.description = %q{Generates sprites on the fly by using `background: sprite-image("sprites/logo.png")`. No Photoshop, no RMagick, no Rake task, save your time and have a lemonade.}
s.has_rdoc = true
s.extra_rdoc_files = ['README.md']
s.rdoc_options = ['--charset=UTF-8']
s.files = Dir["lib/**/*"] + Dir["stylesheets/**/*"] + %w(CHANGELOG.md MIT-LICENSE Rakefile README.md)
s.test_files = Dir['spec/**/*']
s.require_path = 'lib'
s.add_runtime_dependency 'haml', '~> 3'
s.add_runtime_dependency 'chunky_png', '~> 0.9.0'
s.add_development_dependency 'rake', '~> 0.8.7'
s.add_development_dependency 'rspec', '~> 1.3.0'
end