Hi everyone,

Just wanted to announce that I've added support for Gemnasium, to monitor our gems for new versions and security updates.

You can see the web report at https://gemnasium.com/crowbar/travis-ci-crowbar. I've also added a badge on the main Crowbar repo page: https://github.com/crowbar/crowbar#readme.

There are currently three gems that are not up-to-date:

- factory_girl
- factory_girl_rails
- rspec-rails

The attached patch fixes the first two, but we can't apply that until we drop Ruby 1.8.7 (which I hope will be soonish since it's going to be unsupported in June).

I've pushed a fix [1] for the last one, which should be reflected in Gemnasium once the Travis Jenkins runs.

Cheers,
James T.

[1] https://github.com/crowbar/barclamp-crowbar/commit/2a5f03d32c7cfc38eeb0cfafcad8116a6c684d12
diff --git a/crowbar_framework/Gemfile b/crowbar_framework/Gemfile
index c544989..a5991f9 100644
--- a/crowbar_framework/Gemfile
+++ b/crowbar_framework/Gemfile
@@ -49,9 +49,8 @@ gem 'coveralls', :platforms => :ruby_19, :group => :test, :require => false
 
 #gem "chefspec", :group => [:development, :test]
 gem "rspec-rails", "~> 2.11.4", :group => [:development, :test]
-# These to require Ruby 1.9.3
-gem "factory_girl", "<3.0" , :group => [:development, :test]
-gem "factory_girl_rails", "< 3.0" , :group => [:development, :test]
+
+gem 'factory_girl_rails', :group => [:development, :test]
 
 #gem "foodcritic", :group => [:development, :test]
 gem "email_spec", ">= 1.2.1", :group => [:development, :test]
_______________________________________________
Crowbar mailing list
[email protected]
https://lists.us.dell.com/mailman/listinfo/crowbar
For more information: http://crowbar.github.com/

Reply via email to