forked from typeimage/shelves
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshelves.gemspec
More file actions
executable file
·22 lines (19 loc) · 953 Bytes
/
Copy pathshelves.gemspec
File metadata and controls
executable file
·22 lines (19 loc) · 953 Bytes
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 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'shelves/version'
Gem::Specification.new do |gem|
gem.authors = ['Pete Browne']
gem.email = ['me@petebrowne.com']
gem.description = %q{The only responsive, fluid CSS grid with infinitely nestable columns.}
gem.summary = %q{The only responsive, fluid CSS grid with infinitely nestable columns.}
gem.homepage = 'http://shelvesgrid.org'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n").reject{ |f| File.fnmatch?('css/*', f) }
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = 'shelves'
gem.require_paths = ['lib']
gem.version = Shelves::VERSION
gem.add_runtime_dependency 'sass', '~> 3.3'
gem.add_runtime_dependency 'choice', '~> 0.1'
gem.add_development_dependency 'rake', '~> 10.0'
end