Skip to content

Commit

Permalink
Setting Up
Browse files Browse the repository at this point in the history
  • Loading branch information
arailsdemo committed Apr 6, 2011
1 parent 00667be commit c2f049e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
pkg/*
*.gem
.bundle
Gemfile.lock
1 change: 0 additions & 1 deletion Gemfile
@@ -1,4 +1,3 @@
source "http://rubygems.org"

# Specify your gem's dependencies in guard-jstd.gemspec
gemspec
5 changes: 5 additions & 0 deletions Guardfile
@@ -0,0 +1,5 @@
guard 'rspec', :bundler => false, :cli => "-d" do
watch(%r{^spec/.+_spec\.rb})
watch(%r{^lib/(.+)\.rb}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
17 changes: 10 additions & 7 deletions guard-jstd.gemspec
@@ -1,21 +1,24 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "guard-jstd/version"
require "guard/jstd/version"

Gem::Specification.new do |s|
s.name = "guard-jstd"
s.version = Guard::Jstd::VERSION
s.version = Guard::JstdVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["TODO: Write your name"]
s.email = ["TODO: Write your email address"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}
s.authors = ["aRailsDemo"]
s.email = ["arailsdemo@gmail.com"]
s.homepage = "arailsdemo.com"
s.summary = %q{A Guard for JsTestDriver}
s.description = %q{This will watch for changes in your JavaScript project and automatically run JsTestDriver}

s.rubyforge_project = "guard-jstd"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_dependency("guard", ">= 0.3.0")
s.add_development_dependency("rspec", "~> 2.4.0")
end
5 changes: 0 additions & 5 deletions lib/guard-jstd.rb

This file was deleted.

2 changes: 1 addition & 1 deletion lib/guard-jstd/version.rb → lib/guard/jstd/version.rb
@@ -1,5 +1,5 @@
module Guard
module Jstd
module JstdVersion
VERSION = "0.0.1"
end
end

0 comments on commit c2f049e

Please sign in to comment.