When I open Rails console, or sandbox for that matter, and I try and add new date, in this case, a user, I keep getting this same error. I have tried everything to get it resolved, but for the life of me I cannot figure it out. I am using Windows, so obviously I know that is one of my first problems, but its all I have for the current moment, so I will have to make due. Here is the error message that pops up when I try and simply enter user.new(information...)... any help would be greatly appreciated, I am pulling my hair out over here.
C:\TTS\Rails\workspace\sample_app>rails console
DL is deprecated, please use Fiddle
Loading development environment (Rails 4.2.0)
irb(main):001:0> user.new(name: "Will Wagar", email: "[email protected]")
NameError: undefined local variable or method `user' for main:Object
from (irb):1
from C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/commands/console.rb:110:in `start'
from C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/commands/console.rb:9:in `start'
from C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/commands/commands_tasks.rb:68:in `console'
from C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/commands/commands_tasks.rb:39:in `run_command!'
from C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/commands.rb:17:in `<top (required)>'
from bin/rails:4:in `require'
from bin/rails:4:in `<main>'
User.newwith a uppercaseU.