-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutensils.gemspec
27 lines (22 loc) · 948 Bytes
/
utensils.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
$:.push File.expand_path("../lib", __FILE__)
require "utensils/version"
Gem::Specification.new do |s|
s.name = "utensils"
s.version = Utensils::VERSION
s.authors = ["Mode Set"]
s.homepage = "https://github.com/modeset/utensils"
s.summary = "Client side component library, tuned to work with the asset pipeline."
s.description = "Client side component library, tuned to work with the asset pipeline."
s.files = Dir["{app,config,lib,vendor}/**/*"] + ["MIT-LICENSE", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "railties", ">= 3.2.5"
s.add_dependency "sass-rails"
s.add_dependency "bourbon"
s.add_dependency "normalize-rails"
s.add_dependency "coffee-rails"
s.add_development_dependency 'teaspoon', '>= 0.7.4'
# Used by the dummy application
s.add_development_dependency 'docomo'
s.add_development_dependency 'rails', '>= 3.2.5'
end