Skip to content

Commit

Permalink
gem it
Browse files Browse the repository at this point in the history
  • Loading branch information
cldwalker committed Dec 12, 2011
1 parent ce83f33 commit 0f6d5be
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gemspec
@@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
require 'rubygems' unless Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/bahia"

Gem::Specification.new do |s|
s.name = "bahia"
s.version = Bahia::VERSION
s.authors = ["Gabriel Horner"]
s.email = "gabriel.horner@gmail.com"
s.homepage = "http://github.com/cldwalker/bahia"
s.summary = "aruba for non-cucumber test frameworks"
s.description = "Bahia - where commandline acceptance tests are easy, the people are festive and onde nasceu capoeira. In other words, aruba for any non-cucumber test framework."
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{md,txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
s.extra_rdoc_files = ["README.md", "LICENSE.txt"]
s.license = 'MIT'
end
2 changes: 2 additions & 0 deletions CHANGELOG.rdoc
@@ -0,0 +1,2 @@
== 0.1
* Bahia viva!
22 changes: 22 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,22 @@
The MIT LICENSE

Copyright (c) 2011 Gabriel Horner

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 changes: 35 additions & 0 deletions Rakefile
@@ -0,0 +1,35 @@
require 'rake'
require 'fileutils'

def gemspec
@gemspec ||= eval(File.read('.gemspec'), binding, '.gemspec')
end

desc "Build the gem"
task :gem=>:gemspec do
sh "gem build .gemspec"
FileUtils.mkdir_p 'pkg'
FileUtils.mv "#{gemspec.name}-#{gemspec.version}.gem", 'pkg'
end

desc "Install the gem locally"
task :install => :gem do
sh %{gem install pkg/#{gemspec.name}-#{gemspec.version}}
end

desc "Generate the gemspec"
task :generate do
puts gemspec.to_ruby
end

desc "Validate the gemspec"
task :gemspec do
gemspec.validate
end

desc 'Run tests'
task :test do |t|
sh 'bacon -q -Ilib -I. test/*_test.rb'
end

task :default => :test
2 changes: 2 additions & 0 deletions lib/bahia.rb
@@ -1,6 +1,8 @@
require 'open3'

module Bahia
VERSION = '0.1.0'

class DetectionError < StandardError
def initialize(name)
super "Unable to detect #{name}. Set it with Bahia.#{name}"
Expand Down

0 comments on commit 0f6d5be

Please sign in to comment.