Hi I was hoping someone could put me in the right direction or help with this query. I have created an admin user via Devise, I can log in fine and direct to the correct page. What i would like to do is have an admin dashboard on that page where the administrator can perform functions such as update pages via a form ( In particular the news page, this would just consist of updates in the society- so for example a title, date, news, posted by), delete users, upload images to specific pages. There may be more but i would like to know where to start as i am new to ruby on rails. any help greatly appreciated -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hi I was hoping someone could put me in the right direction or help with this query. I have created an admin user via Devise, I can log in fine and direct to the correct page. What i would like to do is have an admin dashboard on that page where the administrator can perform functions such as update pages via a form ( In particular the news page, this would just consist of updates in the society- so for example a title, date, news, posted by), delete users, upload images to specific pages. There may be more but i would like to know where to start as i am new to ruby on rails. any help greatly appreciated -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Feb 1, 2012, at 12:57 PM, Richard l. wrote:> Hi > > I was hoping someone could put me in the right direction or help with > this query. I have created an admin user via Devise, I can log in fine > and direct to the correct page. What i would like to do is have an admin > dashboard on that page where the administrator can perform functions > such as update pages via a form ( In particular the news page, this > would just consist of updates in the society- so for example a title, > date, news, posted by), delete users, upload images to specific pages. > There may be more but i would like to know where to start as i am new to > ruby on rails. any help greatly appreciated---- Why reinvent the wheel? Perhaps if only to learn but you might find this to have everything you are looking for already. http://refinerycms.com/ Craig -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 1 February 2012 19:57, Richard l. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hi > > I was hoping someone could put me in the right direction or help with > this query. I have created an admin user via Devise, I can log in fine > and direct to the correct page. What i would like to do is have an admin > dashboard on that page where the administrator can perform functions > such as update pages via a form ( In particular the news page, this > would just consist of updates in the society- so for example a title, > date, news, posted by), delete users, upload images to specific pages. > There may be more but i would like to know where to start as i am new to > ruby on rails. any help greatly appreciatedWork through some tutorials such as railstutorial.org, which is free to use online. (I seem to have typed that line 100 times in the last week). That is the best way to start. Make sure you have installed the version of rails that the tutorial is written for. Colin> > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- gplus.to/clanlaw -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hi thanks for the replies, i am working through tutorials on a daily basis so hopefully it will all become second nature after a while.. i have looked at refinery and it looks amazing, though i have tried to setup but i need rails 3.0? I have rails 3.1.1 installed. is there any way around this -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 1 February 2012 21:15, Richard l. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hi > > thanks for the replies, i am working through tutorials on a daily basis > so hopefully it will all become second nature after a while.. i have > looked at refinery and it looks amazing, though i have tried to setup > but i need rails 3.0? I have rails 3.1.1 installed. is there any way > around thisInstall rvm and then you can easily have multiple versions of rails, google it to save me the trouble :) Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
i have rvm installed already, to give you an idea in my current app i write rvm use default 1.9.2 before i start the app ( ie cd myapp ). As my current app is using rails V 3.1.1 will this effect installing refinerycms? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
basically im trying to intergrate refinerycms into my current app -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
It should be: rvm use --default 1.9.2 On Feb 1, 10:39 pm, "Richard l." <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> i have rvm installed already, to give you an idea in my current app i > write rvm use default 1.9.2 before i start the app ( ie cd myapp ). As > my current app is using rails V 3.1.1 will this effect installing > refinerycms? > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
what difference does the -- make? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
skipping -- will try to use the default ruby and 1.9.2 ... most likely only 1.9.2 will be used with --default you will use 1.9.2 and ask to make it default On Feb 1, 10:47 pm, "Richard l." <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> what difference does the -- make? > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
thanks for the info!! -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.