public
Description: Generate random short, non-offensive words. Good for human-readable confirmation codes.
Homepage:
Clone URL: git://github.com/dancroak/webster.git
webster / Rakefile
100644 32 lines (27 sloc) 0.853 kb
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
require 'rake'
require 'rake/testtask'
require 'date'
 
test_files_pattern = 'test/**/*_test.rb'
Rake::TestTask.new do |t|
  t.libs << 'lib'
  t.pattern = test_files_pattern
  t.verbose = false
end
 
desc "Run the test suite"
task :default => :test
 
spec = Gem::Specification.new do |s|
  s.name = "webster"
  s.version = "0.4.9"
  s.summary = "Generate random short words. Good for human-readable confirmation codes."
  s.email = "dcroak@thoughtbot.com"
  s.homepage = "http://github.com/dancroak/webster"
  s.description = "Generate random short words. Good for human-readable confirmation codes."
  s.authors = ["Dan Croak", "Jared Carroll", "thoughtbot"]
  s.files = FileList["[A-Z]*", "{lib,shoulda_macros}/**/*"]
end
 
desc "Generate a gemspec file"
task :gemspec do
  File.open("#{spec.name}.gemspec", 'w') do |f|
    f.write spec.to_yaml
  end
end