-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartisans.gemspec
More file actions
38 lines (32 loc) · 1.47 KB
/
artisans.gemspec
File metadata and controls
38 lines (32 loc) · 1.47 KB
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
31
32
33
34
35
36
37
38
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'artisans/version'
Gem::Specification.new do |spec|
spec.name = "artisans"
spec.version = Artisans::VERSION
spec.required_ruby_version = ">= 3.2.0"
spec.authors = ["Shoperb"]
spec.email = ["engineering@shoperb.com"]
spec.summary = 'Tool for compiling scss+liquid assets'
spec.description = 'Artisans compiles SCSS + Liquid assets for Shoperb themes, bundling templates and styles into deployable packages.'
spec.homepage = "https://www.shoperb.dev"
spec.license = "MIT"
spec.metadata = {
"rubygems_mfa_required" => "true",
"homepage_uri" => "https://www.shoperb.com",
"documentation_uri" => "https://www.shoperb.dev",
"source_code_uri" => "https://github.com/shoperb/artisans",
"bug_tracker_uri" => "https://github.com/shoperb/artisans/issues"
}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake"
spec.add_dependency "liquid", "~> 5.11.0"
spec.add_dependency "haml", "~> 7"
spec.add_dependency "rubyzip", "~> 3.2.2"
spec.add_dependency "sass-embedded", '~> 1.94'
end