-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwat.gemspec
More file actions
19 lines (17 loc) · 759 Bytes
/
Copy pathwat.gemspec
File metadata and controls
19 lines (17 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wat/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Pier-Hugues Pellerin"]
gem.email = ["ph@heykimo.com"]
gem.description = %q{Small time keeper with on CLI saving date to text files}
gem.summary = %q{keeping time in csv files}
gem.homepage = "https://github.com/ph/wat"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "wat"
gem.require_paths = ["lib"]
gem.version = Wat::VERSION
gem.add_development_dependency('rspec')
gem.add_development_dependency('fakefs')
end