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
| // IMPORTANT | |
| using System.Collections.Generic; | |
| using System.Text; | |
| // This gist was created thanks to this comment from Alexander on StackOverflow: | |
| // https://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net#comment86833005_34272324 | |
| // This is a derivative work. The logic of this function comes from a switch statement found inside the | |
| // Lucene.Net library. The documentation of the conversion of characters is quite impressive | |
| // (thank you @NightOwl888 and @synhershko !!!): |
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
| ## Rails App Template | |
| ## Updated for Rails 3.0.1 | |
| ## Created on 10/23/10 | |
| ## Updated on 11/4/10 | |
| ## Run using $ rails new [appname] -JT -m tpl-cukeapp.rb | |
| ## Gems | |
| # Warden and Devise for security | |
| gem 'warden', '0.10.7' |