-
Notifications
You must be signed in to change notification settings - Fork 17
/
archetype.gemspec
40 lines (33 loc) · 1.39 KB
/
archetype.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
40
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'archetype/version'
Gem::Specification.new do |gemspec|
## Release Specific Information
gemspec.version = Archetype::VERSION
## Gem Details
gemspec.name = 'archetype'
gemspec.authors = ["Eugene ONeill", "LinkedIn"]
gemspec.summary = %q{A CSS UI Component Authoring Framework}
gemspec.description = %q{
Archetype is a Compass/Sass based framework for authoring configurable,
composable UI components and patterns. The natural language syntax that
Archetype provides allows designers and developer to discuss UI
compositions using the same vocabulary.
}
gemspec.email = "[email protected]"
gemspec.homepage = "http://www.archetypecss.com/"
gemspec.license = "Apache License (2.0)"
## Paths
gemspec.require_paths = %w(lib)
# Gem Files
gemspec.files = `git ls-files`.split($/).select {|f| File.exist?(f) && f =~ %r{^(bin|lib|stylesheets|templates)/} }
gemspec.files += %w(LICENSE README.md CHANGELOG.md VERSION)
gemspec.executables = gemspec.files.grep(%r{^bin/}) { |f| File.basename(f) }
## Gem Bookkeeping
gemspec.rubygems_version = %q{1.3.6}
# dependencies
gemspec.add_dependency('compass', '>= 1.0.0', '< 1.2')
gemspec.add_dependency('sass', '>= 3.3.0', '< 3.5')
# required for OrderedHash on Ruby < 1.9
gemspec.add_dependency('hashery', '~> 2.1')
end