-
Notifications
You must be signed in to change notification settings - Fork 2
/
mice.gemspec
30 lines (24 loc) · 1.01 KB
/
mice.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
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mice/version'
require 'rake'
Gem::Specification.new do |spec|
spec.name = "mice"
spec.version = Mice::VERSION
spec.authors = ["miclle"]
spec.email = ["miclle.zheng@gmail.com"]
spec.summary = "Front-end framework."
spec.description = "Mice is semantic front-end framework."
spec.homepage = "https://github.com/miclle/mice"
spec.license = "MIT"
spec.files = FileList['lib/**/*.rb', '[A-Z]*', 'assets/*'].to_a
# spec.files = `git ls-files -z`.split("\x0")
# spec.files.reject! { |fn| fn.include? "docs" }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'sass', '~> 3.2'
spec.add_development_dependency "bundler", "~> 1.5"
# spec.add_development_dependency "rake"
end