-
Notifications
You must be signed in to change notification settings - Fork 0
/
ad_particles.gemspec
30 lines (29 loc) · 1.33 KB
/
ad_particles.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
$:.push File.expand_path("../lib", __FILE__)
require "ad_particles/version"
Gem::Specification.new do |s|
s.add_development_dependency "css_parser", '~> 1.4', '>= 1.4.1'
s.add_development_dependency "rake", "~> 11.1", ">= 11.1.2"
s.add_development_dependency "rspec", "~> 3.4", '>= 3.4.0'
s.add_development_dependency "scss_lint", "0.48.0"
s.add_runtime_dependency "sass", "~> 3.4", ">= 3.4.22"
s.add_runtime_dependency "thor", "~> 0.19.1"
s.authors = [ "Erik Isaksen" ]
s.description = <<-DESC
ad_particles is SASS Module that defines a base set of variables that can used as a
standard in component styling & consistent theming. Particles, although not
originally discussed by Atomic Design creator Brad Frost, are the abstract &
configuration structures that shape the Atomic design structure from the ground
up.
DESC
s.email = "[email protected]"
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.homepage = "https://github.com/thewebplatform/ad-particles"
s.license = "MIT"
s.name = "ad_particles"
s.platform = Gem::Platform::RUBY
s.require_paths = ["lib"]
s.summary = "A SASS Module that defines a base set of variables"
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.version = AtomicDesignParticles::VERSION
end