matthewrudy / aspicious

Super-simple implementation of Aspects for Ruby

This URL has Read+Write access

aspicious / aspicious.gemspec
100644 16 lines (15 sloc) 0.604 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name = "aspicious"
  s.version = "0.1.1"
  s.date = "2008-12-06"
  s.summary = "Super-simple Aspects in Ruby"
  s.email = "MatthewRudyJacobs@gmail.com"
  s.homepage = "http://github.com/matthewrudy/aspicious"
  s.description = "Aspects applied to Ruby with an air of super-simplicity"
  s.has_rdoc = true
  s.authors = ["Matthew Rudy Jacobs"]
  s.files = ["README", "Rakefile", "lib/aspicious.rb", "lib/aspicious/watcher.rb", "examples/burgerking.rb"]
  #s.test_files = ["spec/aspicious.rb"]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
end