forked from vwochnik/jekyll-autoprefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjekyll-autoprefixer.gemspec
More file actions
23 lines (20 loc) · 947 Bytes
/
Copy pathjekyll-autoprefixer.gemspec
File metadata and controls
23 lines (20 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jekyll/autoprefixer/version'
Gem::Specification.new do |spec|
spec.name = "jekyll-autoprefixer"
spec.version = Jekyll::Autoprefixer::VERSION
spec.authors = ["Vincent Wochnik"]
spec.email = ["v.wochnik@gmail.com"]
spec.description = %q{Autoprefixer integration for Jekyll}
spec.summary = %q{This plugin provides simple autoprefixer support for Jekyll.}
spec.homepage = "https://github.com/vwochnik/jekyll-autoprefixer"
spec.license = "MIT"
spec.files = [*Dir["lib/**/*.rb"], "README.md", "LICENSE.md"]
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 1.9.3'
spec.add_runtime_dependency 'autoprefixer-rails', '~> 9.3'
spec.add_development_dependency 'jekyll', '~> 3.8'
spec.add_development_dependency "bundler", "~> 1.6"
end