forked from evil-icons/evil-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevil_icons.gemspec
39 lines (32 loc) · 1.45 KB
/
evil_icons.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
31
32
33
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'evil_icons/version'
Gem::Specification.new do |spec|
spec.name = "evil_icons"
spec.version = EvilIcons::VERSION
spec.authors = ["Alexander Madyankin", "Roman Shamin"]
spec.email = ["[email protected]"]
spec.summary = "Evil Icons is a set of SVG icons for modern web projects"
spec.description = "Evil Icons is a set of SVG icons designed extensively for using in modern web projects"
spec.homepage = "http://evil-icons.io"
spec.license = "MIT"
spec.files = Dir.glob("assets/*/**/**") + %w(
assets/sprite.svg
lib/evil_icons.rb
lib/evil_icons/engine.rb
lib/evil_icons/helpers.rb
lib/evil_icons/version.rb
evil_icons.gemspec
Rakefile
LICENSE.txt
README.md
CHANGELOG.md
)
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_development_dependency "nokogiri", "~> 1.6"
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake", "~> 10.4"
end