forked from BPScott/breakup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
breakup.gemspec
28 lines (25 loc) · 1.09 KB
/
breakup.gemspec
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'breakup/version'
Gem::Specification.new do |gem|
# Gem Information
gem.name = 'breakup'
gem.version = Breakup::VERSION
gem.authors = ['Ben Scott']
gem.email = ['[email protected]']
gem.description = 'Build multiple stylesheets based off globally defined breakpoints'
gem.summary = 'Breakup is a Sass component that allows you to create multiple
CSS files from a single Sass partial by wrapping your code within breakpoint
blocks. It allows you to abstract what your Sass partials folder looks like
from what CSS files you create. Because of this you can easily create per-
breakpoint CSS files (e.g. base, mobile, tablet and desktop) and fallback
files where no styles are wrapped (e.g. for oldIE which does not support media
queries).'
gem.homepage = 'https://github.com/bpscott/breakup'
# Gem Files
gem.files = `git ls-files`.split($/)
# Dependencies
gem.add_dependency 'sass', '>=3.2.0'
gem.add_dependency 'compass', '>= 0.12.2'
end