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 characters
Steps to migrate a Rails 2.3 project to bundler. | |
1. Install bundler | |
gem install bundler | |
2. Remove existing vendor gems directory | |
rm -rf vendor/gems |
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 characters
#!/usr/bin/env ruby | |
# This is intended for the I18n SimpleBackend. It checks to see that every string | |
# is translated. Running this script will output a list of translation keys that | |
# are remaining to be translated. | |
# The script only checks your custom translations. It does not check the Rails | |
# translations too. If you want to do that just remove the I18n.load_path = ... | |
# The script expects: |
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 characters
find . -name ".git" -exec rm -rf {} \; |
NewerOlder