-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery-color.gemspec
21 lines (18 loc) · 946 Bytes
/
jquery-color.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jquery/color/version'
Gem::Specification.new do |spec|
spec.name = "jquery-color"
spec.version = Jquery::Color::VERSION
spec.authors = ["Dennis Baskin"]
spec.email = ["[email protected]"]
spec.summary = %q{Gem wrapping jQuery plugin for color manipulation and animation support.}
spec.description = %q{This Gem wraps the jQuery plugin for color manipulation and animation support. For documentation please see https://github.com/jquery/jquery-color.}
spec.homepage = "https://github.com/dennisbaskin/jquery-color-ruby"
spec.license = "MIT"
spec.files = Dir["{lib,vendor}/**/*"] + ["LICENSE.txt", "README.md"]
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
end