Re: [rspec-users] Problem while generating rspec model in Rails Project

2009-06-30 Thread Ninad Pol
David Chelimsky wrote: > On Mon, Jun 15, 2009 at 8:04 AM, Ninad Pol wrote: >> I think this problem is not related any plugin (that define a client) >> simply because if i try it with any other ruby file(other than >> Client.rb) also i am facing same problem. > > So

Re: [rspec-users] Problem while generating rspec model in Rails Project

2009-06-15 Thread Ninad Pol
AM, Ninad Pol wrote: >> Thanks for your reply. >> >> No, above command does not give me same error. However it creates only >> the model file under \app\models and asks whether to overwrite it. But >> my aim is to create rspec file under \spec\models with the actual

Re: [rspec-users] Problem while generating rspec model in Rails Project

2009-06-14 Thread Ninad Pol
overwrite it. I am not getting this schenario may be because i am missing something.It would be really helpful if you could help me out in this. David Chelimsky wrote: > On Fri, Jun 12, 2009 at 5:35 AM, Ninad Pol wrote: >> >> by on Rails. >> >> >> So can anybody

[rspec-users] Problem while generating rspec model in Rails Project

2009-06-12 Thread Ninad Pol
Hi, I am new to testing and Rspec. I have one rails project created on my machine. In this project under \app\models i have a file called "client.rb" which has been already created. Now i want to generate spec file for this model for which i am using command: ruby script/generate rspec_model Cli