Skip to content

Commit

Permalink
Adding metric_fu
Browse files Browse the repository at this point in the history
  • Loading branch information
tscolari committed Sep 4, 2011
1 parent 57a35df commit 8c249a5
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Gemfile
Expand Up @@ -11,6 +11,11 @@ gem 'cucumber'
gem 'cucumber-rails'
gem 'webrat'

gem 'metric_fu'
gem 'map'
gem 'fattr'
gem 'arrayfields'

# Declare any dependencies that are still in development here instead of in
# your gemspec. These might include edge Rails or gems from your path or
# Git. Remember to move these dependencies to your gemspec before releasing
Expand Down
61 changes: 61 additions & 0 deletions Gemfile.lock
Expand Up @@ -7,6 +7,7 @@ PATH
GEM
remote: http://rubygems.org/
specs:
Saikuro (1.1.0)
actionmailer (3.1.0)
actionpack (= 3.1.0)
mail (~> 2.3.0)
Expand Down Expand Up @@ -37,6 +38,7 @@ GEM
activesupport (3.1.0)
multi_json (~> 1.0)
arel (2.2.1)
arrayfields (4.7.4)
bcrypt-ruby (3.0.0)
builder (3.0.0)
capybara (1.0.1)
Expand All @@ -48,6 +50,15 @@ GEM
xpath (~> 0.1.4)
childprocess (0.2.2)
ffi (~> 1.0.6)
chronic (0.3.0)
churn (0.0.13)
chronic (>= 0.2.3)
hirb
json_pure
main
ruby_parser (~> 2.0.4)
sexp_processor (~> 3.0.3)
colored (1.2)
cucumber (1.0.2)
builder (>= 2.1.2)
diff-lcs (>= 1.1.2)
Expand All @@ -60,17 +71,40 @@ GEM
nokogiri (>= 1.4.6)
diff-lcs (1.1.3)
erubis (2.7.0)
fattr (2.2.0)
ffi (1.0.9)
flay (1.4.3)
ruby_parser (~> 2.0)
sexp_processor (~> 3.0)
flog (2.5.2)
ruby_parser (~> 2.0)
sexp_processor (~> 3.0)
gherkin (2.4.16)
json (>= 1.4.6)
haml (3.1.2)
hike (1.2.1)
hirb (0.5.0)
i18n (0.6.0)
json (1.5.3)
json_pure (1.5.3)
mail (2.3.0)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
main (4.7.1)
map (4.5.0)
metric_fu (2.1.1)
Saikuro (>= 1.1.0)
activesupport (>= 2.0.0)
chronic (~> 0.3.0)
churn (>= 0.0.7)
flay (>= 1.2.1)
flog (>= 2.3.0)
rails_best_practices (>= 0.6.4)
rcov (>= 0.8.3.3)
reek (>= 1.2.6)
roodi (>= 2.1.0)
syntax
mime-types (1.16)
multi_json (1.0.3)
nokogiri (1.5.0)
Expand All @@ -92,6 +126,14 @@ GEM
activesupport (= 3.1.0)
bundler (~> 1.0)
railties (= 3.1.0)
rails_best_practices (0.10.1)
activesupport
colored
erubis
haml
i18n
ruby-progressbar
ruby_parser
railties (3.1.0)
actionpack (= 3.1.0)
activesupport (= 3.1.0)
Expand All @@ -100,7 +142,14 @@ GEM
rdoc (~> 3.4)
thor (~> 0.14.6)
rake (0.9.2)
rcov (0.9.10)
rdoc (3.9.4)
reek (1.2.8)
ruby2ruby (~> 1.2)
ruby_parser (~> 2.0)
sexp_processor (~> 3.0)
roodi (2.1.0)
ruby_parser
rspec (2.6.0)
rspec-core (~> 2.6.0)
rspec-expectations (~> 2.6.0)
Expand All @@ -114,16 +163,24 @@ GEM
activesupport (~> 3.0)
railties (~> 3.0)
rspec (~> 2.6.0)
ruby-progressbar (0.0.10)
ruby2ruby (1.3.0)
ruby_parser (~> 2.0)
sexp_processor (~> 3.0)
ruby_parser (2.0.6)
sexp_processor (~> 3.0)
rubyzip (0.9.4)
selenium-webdriver (2.5.0)
childprocess (>= 0.2.1)
ffi (>= 1.0.7)
json_pure
rubyzip
sexp_processor (3.0.6)
sprockets (2.0.0)
hike (~> 1.2)
rack (~> 1.0)
tilt (!= 1.3.0, ~> 1.1)
syntax (1.0.0)
term-ansicolor (1.0.6)
thor (0.14.6)
tilt (1.3.3)
Expand All @@ -142,8 +199,12 @@ PLATFORMS
ruby

DEPENDENCIES
arrayfields
cucumber
cucumber-rails
fattr
map
metric_fu
mobylette!
rspec
rspec-rails
Expand Down
5 changes: 5 additions & 0 deletions Rakefile
Expand Up @@ -33,5 +33,10 @@ Rake::TestTask.new(:test) do |t|
t.verbose = false
end

require 'metric_fu'
MetricFu::Configuration.run do |config|
config.rcov[:test_files] = ['spec/**/*_spec.rb']
config.rcov[:rcov_opts] << "-Ispec" # Needed to find spec_helper
end

task :default => :test

0 comments on commit 8c249a5

Please sign in to comment.