-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathspinners.gemspec
More file actions
33 lines (24 loc) · 805 Bytes
/
spinners.gemspec
File metadata and controls
33 lines (24 loc) · 805 Bytes
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
require './lib/spinners'
Gem::Specification.new do |s|
# Release Info
s.version = Spinners::VERSION
s.date = Spinners::DATE
# Gem Details
s.name = "spinners"
s.description = %q{A Sass mixin and Compass extension to generate pure CSS3 loading/busy indicators}
s.summary = %q{Uses a single rotating element and a partial border. Fully customizable.}
s.authors = ["Franz Heidl"]
s.homepage = "https://github.com/franzheidl/spinners"
s.licenses = ['MIT']
# Readme file
s.files = ["README.md"]
# Library Files
s.files += Dir.glob("lib/**/*.*")
# Sass Files
s.files += Dir.glob("stylesheets/**/*.*")
# Gem Bookkeeping
s.required_rubygems_version = ">= 1.3.6"
s.rubygems_version = %q{1.3.6}
# Gems Dependencies
s.add_dependency("sass", ["~> 3.2"])
end