Displaying 3 results from an estimated 3 matches for "twscann".
Did you mean:
toscano
2008 Mar 21
3
Error in new project boot.rb
When I create a new 2.0 project (rails project_name)
Aptana shows what appears to me to be a valid error in boot.rb
The line:
if version = self.class.gem_version
is an assignment
Should this not read:
if version == self.class.gem_version
def load_rails_gem
if version = self.class.gem_version
gem ''rails'', version
else
gem
2009 Jan 12
5
Restful Authentication Uninitialized Constant in Production...
rake db:migrate RAILS_ENV=production
rake aborted!
uninitialized constant User::Authentication
The preceding I encounter when attempting to migrate to the production
database. My google powers have escaped me. Everywhere says Restful
Authentication is missing in the production server. However, to
validate this, I attempted this on the same server as the development,
which works.
So, what
2008 Nov 27
2
git .gitignore vs exclude file
I am a bit confused about the different purpose of each.
I think the .gitignore file belongs in the root of my project and is
project specific, but that also seems to be the reason for the .git/
info/exclude file
what happens if they conflict? which one wins.
What is standard practice?
My exclude file looks like this
# git-ls-files --others --exclude-from=.git/info/exclude
log/*.log
tmp/**/*