ddollar / sweeper

This URL has Read+Write access

sweeper / sweeper.gemspec
100644 22 lines (15 sloc) 0.622 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
spec = Gem::Specification.new do |s|
 
  s.executables = [ 'sweep' ]
  
  s.name = "sweeper"
  s.version = "0.1.2"
  s.summary = "Sweep a directory into subdirectories by age"
  s.homepage = "http://peervoice.com/software/sweeper"
  
  s.author = "David Dollar"
  s.email = "ddollar@gmail.com"
  
  s.files = ["bin/sweep","lib/core_ext","lib/core_ext/fixnum.rb","lib/sweeper","lib/sweeper/sweeper.rb","lib/sweeper.rb"]
  s.platform = Gem::Platform::RUBY
                   
  s.rubyforge_project = "sweeper"
  s.require_path = "lib"
  s.has_rdoc = true
  s.extra_rdoc_files = ["README"]
  
end