- Models
- RSpec specs : update
spec/models/model_name_spec.rb
file - Factories specs : update
spec/factories_spec/factories_spec.rb
file - Factories : update
spec/factories/factories.rb
file - Sample data script : update
lib/tasks/development/sample_data.rake
file - RDoc : update
app/models/model_name.rb
file comments - Migration passing in development environment : run
rake:db:migrate
- Migration passing in test environment : run
rake db:test:prepare
- Database population passing : run
rake db:populate
- RSpec specs : update
- Locales : update
config/locales/model_name/fr.yml
&config/locales/model_name/en.yml
files
This file contains 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 characters
# F. Carrega Git configuration file | |
[user] | |
name = Fabrice Carrega | |
email = [email protected] | |
[alias] | |
co = checkout | |
ps = push | |
r = remote -v | |
a = add |
This file contains 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 characters
#!/bin/bash | |
# | |
# Release script | |
# Launch script | |
clear | |
echo -n "Releasing application. Please run this script outside of virtual machine. Continue ? y/n : " | |
read ok | |
if [ "$ok" = "y" ] || [ "$ok" = "Y" ]; then |