-
Notifications
You must be signed in to change notification settings - Fork 1
/
terrimporter.gemspec
32 lines (25 loc) · 1.21 KB
/
terrimporter.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "terrimporter/version"
Gem::Specification.new do |s|
s.name = "terrimporter"
s.version = TerrImporter::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Daniel Kummer"]
s.email = ["daniel.kummer@gmail.com"]
s.homepage = ""
s.summary = %q{Import terrific javascripts, css files and images into a web project}
s.description = %q{This gem allows terrific(http://terrifically.org/ ) project import of css, javascript and image files based on a command line tool and a configuration file.}
s.rubyforge_project = "terrimporter"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib", "tasks"]
s.default_executable = 'bin/terrimporter'
s.add_dependency "kwalify", [">= 0.7.2"]
s.add_development_dependency "shoulda", [">= 0"]
s.add_development_dependency "bundler", ["~> 1.0.0"]
s.add_development_dependency "rake", [">= 0"]
s.add_development_dependency "rcov", [">= 0"]
s.add_development_dependency "fakeweb"
end