summary refs log tree commit diff
path: root/bacon.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'bacon.gemspec')
-rw-r--r--bacon.gemspec25
1 files changed, 25 insertions, 0 deletions
diff --git a/bacon.gemspec b/bacon.gemspec
new file mode 100644
index 0000000..1494ea0
--- /dev/null
+++ b/bacon.gemspec
@@ -0,0 +1,25 @@
+Gem::Specification.new do |s|
+  s.name            = "bacon"
+  s.version         = '1.1.11'
+  s.platform        = Gem::Platform::RUBY
+  s.summary         = "a small RSpec clone"
+
+  s.description = <<-EOF
+Bacon is a small RSpec clone weighing less than 350 LoC but
+nevertheless providing all essential features.
+
+http://github.com/chneukirchen/bacon
+  EOF
+
+  s.files           = `git ls-files`.split("\n") - [".gitignore"] + %w(RDOX ChangeLog)
+  s.bindir          = 'bin'
+  s.executables     << 'bacon'
+  s.require_path    = 'lib'
+  s.has_rdoc        = true
+  s.extra_rdoc_files = ['README', 'RDOX']
+  s.test_files      = []
+
+  s.author          = 'Christian Neukirchen'
+  s.email           = 'chneukirchen@gmail.com'
+  s.homepage        = 'http://github.com/chneukirchen/bacon'
+end