I am learning rails and referring to the -- Ruby on Rails Guides: Getting Started with Rails. I executed command: bundle install It displayed a lot of names and among them was SQLite. I see that it is of old version and want to install the latest version of SQLite. Should I just replace the SQLite dll located in the path shown or is there any other way? -- 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.
Conrad Taylor
2011-Aug-02 19:37 UTC
Re: How to install new version of SQLite in the bundle?
On Tue, Aug 2, 2011 at 12:30 PM, Rubyist Rohit <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I am learning rails and referring to the -- Ruby on Rails Guides: > Getting Started with Rails. > > I executed command: bundle install > > It displayed a lot of names and among them was SQLite. I see that it is > of old version and want to install the latest version of SQLite. Should > I just replace the SQLite dll located in the path shown or is there any > other way? > >Rohit, the version of the SQLite Ruby gem and the SQLite library are different. Now, if you want to install a new version of the SQLite library, then I recommend reinstalling the SQLite Ruby gem again. Good luck, -Conrad> -- > 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. > >-- 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.
Rubyist Rohit
2011-Aug-02 19:39 UTC
Re: How to install new version of SQLite in the bundle?
Where is the latest SQLite Ruby Gem located? -- 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.
Rubyist Rohit wrote in post #1014558:> I am learning rails and referring to the -- Ruby on Rails Guides: > Getting Started with Rails. > > I executed command: bundle install > > It displayed a lot of names and among them was SQLite.bundle install is used to install all the gems listed in your Gemfile. Your Gemfile is in the folder: ../your_app_name> I see that it is > of old version and want to install the latest version of SQLite. Should > I just replace the SQLite dll located in the path shown or is there any > other way?Here''s how you can specify versions in your Gemfile: http://gembundler.com/rationale.html -- 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.