Add some basic infrastructure for running RSpec

This commit is contained in:
R. Tyler Croy 2013-03-10 16:58:01 -07:00
parent d29120136e
commit 320f90dbac
4 changed files with 14 additions and 3 deletions

View File

@ -2,3 +2,8 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in passageway.gemspec
gemspec
group :test do
gem 'rspec', '> 2.10'
end

View File

@ -1 +1,7 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |s|
s.rspec_opts = '--color --format d --fail-fast --order random'
s.pattern = 'spec/**_spec.rb'
end

View File

@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
spec.version = Passageway::VERSION
spec.authors = ["R. Tyler Croy"]
spec.email = ["tyler@monkeypox.org"]
spec.description = %q{TODO: Write a gem description}
spec.summary = %q{TODO: Write a gem summary}
spec.homepage = ""
spec.description = "A Ruby-based client for localtunnel"
spec.summary = "This is a fork off the original localtunnel Ruby gem, which has since been deprecated"
spec.homepage = "https://github.com/rtyler/passageway"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)

0
spec/spec_helper.rb Normal file
View File