Skip to content
This repository has been archived by the owner on Aug 10, 2020. It is now read-only.

Commit

Permalink
Fixing Rakefile & adding Gemfile, Guardfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrall committed Mar 15, 2011
1 parent b81baa5 commit acdad8c
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ rdoc
pkg

## PROJECT::SPECIFIC
.bundle
10 changes: 10 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
source :rubygems

gem 'jeweler'
gem 'rspec', '1.3'
gem 'diff-lcs'
gem 'rails', '~> 2.3'
gem 'guard'
gem 'guard-rspec'
gem 'rb-fsevent'
gem 'growl'
56 changes: 56 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
GEM
remote: http://rubygems.org/
specs:
actionmailer (2.3.10)
actionpack (= 2.3.10)
actionpack (2.3.10)
activesupport (= 2.3.10)
rack (~> 1.1.0)
activerecord (2.3.10)
activesupport (= 2.3.10)
activeresource (2.3.10)
activesupport (= 2.3.10)
activesupport (2.3.10)
configuration (1.2.0)
diff-lcs (1.1.2)
git (1.2.5)
growl (1.0.3)
guard (0.3.0)
open_gem (~> 1.4.2)
thor (~> 0.14.6)
guard-rspec (0.1.9)
guard (>= 0.2.2)
jeweler (1.5.2)
bundler (~> 1.0.0)
git (>= 1.2.5)
rake
launchy (0.3.7)
configuration (>= 0.0.5)
rake (>= 0.8.1)
open_gem (1.4.2)
launchy (~> 0.3.5)
rack (1.1.0)
rails (2.3.10)
actionmailer (= 2.3.10)
actionpack (= 2.3.10)
activerecord (= 2.3.10)
activeresource (= 2.3.10)
activesupport (= 2.3.10)
rake (>= 0.8.3)
rake (0.8.7)
rb-fsevent (0.3.10)
rspec (1.3.0)
thor (0.14.6)

PLATFORMS
ruby

DEPENDENCIES
diff-lcs
growl
guard
guard-rspec
jeweler
rails (~> 2.3)
rb-fsevent
rspec (= 1.3)
8 changes: 8 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# A sample Guardfile
# More info at http://github.com/guard/guard#readme

guard 'rspec', :version => 1 do
watch(/^spec\/(.*)_spec.rb/)
watch(/^spec\/spec_helper.rb/) { "spec" }
watch(/^lib\/(.*)\.rb/) { |m| "spec/lib/#{m[1]}_spec.rb" }
end
6 changes: 2 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ begin
gem.name = "analytical"
gem.summary = %Q{Gem for managing multiple analytics services in your rails app.}
gem.description = %Q{Gem for managing multiple analytics services in your rails app.}
gem.email = "josh@transfs.com"
gem.email = "josh@feefighters.com"
gem.homepage = "http://github.com/jkrall/analytical"
gem.authors = ["Joshua Krall", "Nathan Phelps", "Adam Anderson"]
gem.authors = ["Joshua Krall", "Nathan Phelps", "Adam Anderson", ""]
gem.add_development_dependency "rspec", ">= 1.2.9"
gem.add_dependency "activesupport"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
Expand All @@ -31,8 +31,6 @@ Spec::Rake::SpecTask.new(:rcov) do |spec|
spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

require 'rake/rdoctask'
Expand Down

0 comments on commit acdad8c

Please sign in to comment.