Hi. FreeMIS is about ready for a first release as a Ruby-on-Rails based application. I''m beginning to realise that there''s a lot of stuff to be installed before you can get even a WEBrick served version up and running: MySql, Ruby, ruby-mysql bindings, rubygems, rails, and a couple more gems - raspell (which needs aspell) and tzinfo. I''m trying to figure out the best way to ease this installation process. If anyone has been through this process already and got any hints, I''d really appreciate it. Cheers, -- Robert Jones
You could pre load your required gem in the vendor dir for packaging. this IMHO is a good thing to do if there are alot of dependancies. Sam On 10/16/05, Robert Jones <jonesieboy-FhtRXb7CoQBt1OO0OYaSVA@public.gmane.org> wrote:> Hi. FreeMIS is about ready for a first release as a Ruby-on-Rails based > application. > > I''m beginning to realise that there''s a lot of stuff to be installed before > you can get even a WEBrick served version up and running: > MySql, Ruby, ruby-mysql bindings, rubygems, rails, and a couple more gems - > raspell (which needs aspell) and tzinfo. > > I''m trying to figure out the best way to ease this installation process. If > anyone has been through this process already and got any hints, I''d really > appreciate it. > > Cheers, > > -- > Robert Jones > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Alex Young
2005-Oct-16 14:53 UTC
Re: FreeMIS Open Source Project - packaging advice needed
Or you could hack it into InstantRails, or Locomotive, or package it as a rubyscript2exe... Any of these would give the end user almost nothing to do but download and run. -- Alex Sam Mayes wrote:> You could pre load your required gem in the vendor dir for packaging. > this IMHO is a good thing to do if there are alot of dependancies. > > Sam > > On 10/16/05, Robert Jones <jonesieboy-FhtRXb7CoQBt1OO0OYaSVA@public.gmane.org> wrote: > >>Hi. FreeMIS is about ready for a first release as a Ruby-on-Rails based >>application. >> >>I''m beginning to realise that there''s a lot of stuff to be installed before >>you can get even a WEBrick served version up and running: >>MySql, Ruby, ruby-mysql bindings, rubygems, rails, and a couple more gems - >>raspell (which needs aspell) and tzinfo. >> >>I''m trying to figure out the best way to ease this installation process. If >>anyone has been through this process already and got any hints, I''d really >>appreciate it. >> >>Cheers, >> >>-- >>Robert Jones >> >>_______________________________________________ >>Rails mailing list >>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>http://lists.rubyonrails.org/mailman/listinfo/rails >> > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails
Robert Jones
2005-Oct-16 16:05 UTC
Re: FreeMIS Open Source Project - packaging advice needed
Alex Young wrote:> Or you could hack it into InstantRails, or Locomotive, or package it as > a rubyscript2exe... Any of these would give the end user almost nothing > to do but download and run. >None of this means anything to me right now, but I''ll go away and google some. Thanks for the pointers. -- Robert Jones
Sam Mayes
2005-Oct-17 00:42 UTC
Re: Re: FreeMIS Open Source Project - packaging advice needed
Locomotive is a mac osx rails development "sandbox" Instantrails is the same for windows. If you search the list there are numerous references. locomotive.sourceforge.net They probably dont have all the gems you need. Like i suggested above. id go the typo route and pute your required libs in the vendor dir Sam On 10/16/05, Robert Jones <jonesieboy-FhtRXb7CoQBt1OO0OYaSVA@public.gmane.org> wrote:> Alex Young wrote: > > > Or you could hack it into InstantRails, or Locomotive, or package it as > > a rubyscript2exe... Any of these would give the end user almost nothing > > to do but download and run. > > > > None of this means anything to me right now, but I''ll go away and google > some. Thanks for the pointers. > > -- > Robert Jones > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Robert Jones
2005-Oct-17 06:32 UTC
Re: Re: FreeMIS Open Source Project - packaging advice needed
Sam Mayes wrote:> Locomotive is a mac osx rails development "sandbox" > Instantrails is the same for windows. If you search the list there are > numerous references. > > locomotive.sourceforge.net > > They probably dont have all the gems you need. Like i suggested above. > id go the typo route and pute your required libs in the vendor dir > > SamThanks Sam. I''ll look into all the options, though yours sounds better for a Linux user like myself :) -- Robert Jones
Sam Mayes
2005-Oct-17 12:20 UTC
Re: Re: Re: FreeMIS Open Source Project - packaging advice needed
Robert, My suggestion would be more "cross platform" and pretty much allow someone to setup the app with minimum config. Sam On 10/17/05, Robert Jones <jonesieboy-FhtRXb7CoQBt1OO0OYaSVA@public.gmane.org> wrote:> Sam Mayes wrote: > > > Locomotive is a mac osx rails development "sandbox" > > Instantrails is the same for windows. If you search the list there are > > numerous references. > > > > locomotive.sourceforge.net > > > > They probably dont have all the gems you need. Like i suggested above. > > id go the typo route and pute your required libs in the vendor dir > > > > Sam > > Thanks Sam. I''ll look into all the options, though yours sounds better for a > Linux user like myself :) > > -- > Robert Jones > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >