Created
November 7, 2011 06:47
-
-
Save PhilippePerret/1344345 to your computer and use it in GitHub Desktop.
Revisions
-
PhilippePerret revised this gist
Feb 4, 2012 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,6 +12,12 @@ gem 'haml' gem 'haml-rails'#, :group => :development gem 'simple_form' # Pour enregistrer de grosses quantités de données d'un seul coup # liste = [] # props_des_trucs.each { |props_truc| liste << Truc.new( props_truc ) } # Truc.import liste[, :validate => false] gem "activerecord-import", ">= 0.2.0" gem 'kaminari' # Au lieu de paginate # Pour dumper/loader la base de données (vers YAML) avec : -
PhilippePerret revised this gist
Jan 5, 2012 . 1 changed file with 7 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -52,20 +52,21 @@ group :development do gem 'annotate-models', '1.0.4' end group :development, :test do gem 'rspec-rails' gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git' gem 'launchy' gem 'database_cleaner' end group :test do gem 'rails3-generators' #mainly for factory_girl & simple_form at this point gem 'factory_girl_rails', '1.0' gem 'cucumber-rails' # Pretty printed test output gem 'turn', :require => false gem 'webrat', '0.7.1' gem 'spork', '0.8.4' gem 'selenium' # Pour les test js/ajax (utilisé par défaut par Capybara) gem 'selenium-client' # Idem end -
PhilippePerret revised this gist
Jan 5, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -58,7 +58,7 @@ group :test do gem 'rspec-rails' gem 'factory_girl_rails', '1.0' gem 'cucumber-rails' gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git' # Pretty printed test output gem 'turn', :require => false gem 'webrat', '0.7.1' -
PhilippePerret revised this gist
Jan 5, 2012 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -63,6 +63,9 @@ group :test do gem 'turn', :require => false gem 'webrat', '0.7.1' gem 'spork', '0.8.4' # gem 'akephalos' # Pour les test js/ajax # Mais incompatible avec Capybara 1.1.1 gem 'selenium' # Pour les test js/ajax (utilisé par défaut par Capybara) gem 'selenium-client' # Idem end -
PhilippePerret revised this gist
Jan 5, 2012 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -63,4 +63,6 @@ group :test do gem 'turn', :require => false gem 'webrat', '0.7.1' gem 'spork', '0.8.4' gem 'akephalos' # Pour les test js/ajax # Voir les ajouts nécessaires dans spec/spec_helper.rb end -
PhilippePerret revised this gist
Dec 26, 2011 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -26,6 +26,7 @@ gem "jasmine" # Pour tests javascript gem 'devise' # Pour le système d'authentification # Pour les cron jobs # Cf. https://github.com/javan/whenever gem 'whenever', :require => false # Gems used only for assets and not required -
PhilippePerret revised this gist
Dec 26, 2011 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,6 +25,9 @@ gem "jasmine" # Pour tests javascript gem 'devise' # Pour le système d'authentification # Pour les cron jobs gem 'whenever', :require => false # Gems used only for assets and not required # in production environments by default. group :assets do -
PhilippePerret revised this gist
Dec 15, 2011 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,13 @@ gem 'simple_form' gem 'kaminari' # Au lieu de paginate # Pour dumper/loader la base de données (vers YAML) avec : # cf. : https://github.com/ludicast/yaml_db # rake db:data:dump # rake db:data:load gem 'yaml_db' gem "jasmine" # Pour tests javascript gem 'devise' # Pour le système d'authentification -
PhilippePerret revised this gist
Nov 10, 2011 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,6 +16,8 @@ gem 'kaminari' # Au lieu de paginate gem "jasmine" # Pour tests javascript gem 'devise' # Pour le système d'authentification # Gems used only for assets and not required # in production environments by default. group :assets do -
PhilippePerret created this gist
Nov 7, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,53 @@ source 'http://rubygems.org' gem 'rails', '3.1.0' gem 'sqlite3' gem 'sqlite3-ruby', '1.3.2', :require => 'sqlite3' gem "rubyzip", '0.9.4' gem 'json' gem 'haml' gem 'haml-rails'#, :group => :development gem 'simple_form' gem 'kaminari' # Au lieu de paginate gem "jasmine" # Pour tests javascript # Gems used only for assets and not required # in production environments by default. group :assets do gem 'sass-rails', " ~> 3.1.0" gem 'coffee-rails', "~> 3.1.0" gem 'uglifier' end gem 'jquery-rails' # Use unicorn as the web server # gem 'unicorn' # Deploy with Capistrano gem 'capistrano' # To use debugger # gem 'ruby-debug' group :development do gem 'annotate-models', '1.0.4' end group :test do gem 'database_cleaner' gem 'rails3-generators' #mainly for factory_girl & simple_form at this point gem 'rspec-rails' gem 'factory_girl_rails', '1.0' gem 'cucumber-rails' gem 'capybara' # Pretty printed test output gem 'turn', :require => false gem 'webrat', '0.7.1' gem 'spork', '0.8.4' end