forked from etienne/wordless_gem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordless.gemspec
More file actions
22 lines (18 loc) · 796 Bytes
/
Copy pathwordless.gemspec
File metadata and controls
22 lines (18 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wordless/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Étienne Després"]
gem.email = ["etienne@molotov.ca"]
gem.description = %q{Wordless}
gem.summary = %q{Manage Wordless themes.}
gem.homepage = "http://github.com/etienne/wordless_gem"
gem.add_dependency "thor"
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'fakeweb'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "wordless"
gem.require_paths = ["lib"]
gem.version = Wordless::VERSION
end