Re: [Rails] I got error xmlrpc-0.3.0 requires ruby version >= 2.3

2017-05-05 Thread Simon Fisher
quot;2.4.1" > > > On Tue, May 2, 2017 at 7:50 AM, Simon Fisher <sij...@gmail.com > > wrote: > >> Thanks Edsil, Frederick. How did you solve it? Is it as simple as >> specifying a Ruby version >= 2.3 in your gemfile? >> >> I noticed from the Herok

Re: [Rails] I got error xmlrpc-0.3.0 requires ruby version >= 2.3

2017-05-01 Thread Simon Fisher
Frederick is correct, it is a dependency. > > On Tue, May 2, 2017 at 12:47 AM, Frederick Cheung <frederic...@gmail.com > > wrote: > >> On Monday, May 1, 2017 at 5:42:22 PM UTC+1, Simon Fisher wrote: >> > Hi Edsil, I have the same issue as Edsil and it is because

Re: [Rails] I got error xmlrpc-0.3.0 requires ruby version >= 2.3

2017-05-01 Thread Simon Fisher
Hi Edsil, I have the same issue as Edsil and it is because of the Ruby version running on Heroku. Curious thing is that xmlrpc-0.3.0 is not a gem in my gemfile (pasted below) so I'm not sure how to downgrade the gem and I can't upgrade the version of Ruby on Heroku (to my knowledge). Any ideas?

[Rails] Activity tracker with fast and extensive query mechanism

2014-08-27 Thread Chen Fisher
Hi, all. A new Gem for tracking and querying activities/events in your website/process: https://github.com/chenfisher/Btrack Thanks, -- Chen -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop

[Rails] Re: Rails 3 mysql date

2010-10-20 Thread Todd Fisher
This has to do with how ruby 1.9.x changed the default Date.parse see this sample script: require 'time' require 'date' r = Date.parse(10/1/2010) puts r.strftime(%a %d %B %Y) ruby-1.9.2-p0 = Sun 10 January 2010 ruby-1.8.7-p302 = Fri 01 October 2010 One solution for Ruby 1.9.2 would be to

[Rails] Re: LoadError: no such file to load -- openssl, following Rails Guides

2010-06-18 Thread James Fisher
bump. presumably this is a simple issue. On Thu, Jun 17, 2010 at 8:23 PM, James Fisher jameshfis...@gmail.comwrote: [With apologies for cross-posting at http://railsforum.com/viewtopic.php?id=39587] Hi all, I'm following the edge 'getting started' guide at http://guides.rails.info

[Rails] Re: LoadError: no such file to load -- openssl, following Rails Guides

2010-06-18 Thread James Fisher
source, using `rvm install 1.9.2`? On Fri, Jun 18, 2010 at 10:44 AM, James Fisher jameshfis...@gmail.comwrote: bump. presumably this is a simple issue. On Thu, Jun 17, 2010 at 8:23 PM, James Fisher jameshfis...@gmail.comwrote: [With apologies for cross-posting at http://railsforum.com

[Rails] LoadError: no such file to load -- openssl, following Rails Guides

2010-06-17 Thread James Fisher
[With apologies for cross-posting at http://railsforum.com/viewtopic.php?id=39587] Hi all, I'm following the edge 'getting started' guide at http://guides.rails.info/getting_started.html, running ROR 3. I'm running Ruby 1.9.2 (as instructed by the guide), installed using RVM. I get an error

[Rails] Embed flash application

2009-09-01 Thread Robin Fisher
Hi, I have a third-party flash application that needs to be incorporated into a site I look after. The application consists of an swf in a standard html file and then a load of supporting files organised in directories under the directory in which the swf is located. What is the best way to

[Rails] Re: Embed flash application

2009-09-01 Thread Robin Fisher
On Sep 1, 6:34 pm, heimdull fre...@cfandersen.com wrote: create a controller that has an action lets say flashController with action index... def index end Which renders index.html.erb then cut'n past the html into that file... app/views/flash/index.html.erb Thanks. Then the swf

[Rails] Re: Getting this error

2009-08-31 Thread FISHER
maybe some problem in your database, try this: rake db:migrate:redo On Aug 31, 3:10 pm, Hunt Hunt rails-mailing-l...@andreas-s.net wrote: HI friends, After updating ruby 1.8 to ruby1.9.1... on firing script/server to start a server, I am getting the following errror.

[Rails] Associations problem

2009-07-20 Thread Robin Fisher
Hi all, I have some associations setup such that: class Job has_many :applications end class Candidate has_many :applications end class Application belongs_to :job belongs_to :candidate end When viewing a particular job, I have the following iteration: % for application in

[Rails] Re: opening old project

2009-06-23 Thread Robin Fisher
On 23 June, 00:19, Luciano bonach...@gmail.com wrote: Hello Marnen, I'm sorry for this short description! this is the erro I got: It looks like you're missing a gem as well. You should check what gems are required for this project. Robin

[Rails] Re: display category name in url

2009-06-19 Thread Robin Fisher
On 19 June, 11:48, lecielbleu canal...@gmail.com wrote: Hi , do we have to use controller name in url , can we change this? For example i have a controller named = category when user click to link Computer Components can rails writehttp://domain/computer-componentsinstead

[Rails] Re: How to write cycle helper for this code

2009-06-19 Thread Robin Fisher
On 19 June, 06:50, Nike Mike rails-mailing-l...@andreas-s.net wrote: tr     td width=50% style=border-left: solid 1px #ebeae9;         a href=#Headline tortor sit amet tellus interdum /a     /td     td width=50% style=border-right: solid 1px #ebeae9;         a href=#Headline tortor sit amet

[Rails] Rails site on CD

2009-05-29 Thread Robin Fisher
Hi All I've been asked to provide a copy of a site I've just put together on a CD so that it can be tailed in with a Powerpoint presentation (I presume links from the presentation to a local copy of the site). Does anyone have any thoughts on how one could go about this? The only thought I had

[Rails] Re: SubDomain Queries

2009-05-29 Thread Robin Fisher
Hi Sahil, If someone types in blog.company.com, you will need access to the server on which that domain resides in order to redirect it to your app, it has nothing to do with how you structure your application. If you setup a redirect, then the user will see yourapp.com/blog/:id unless you

[Rails] Re: Rails site on CD

2009-05-29 Thread Robin Fisher
Great stuff! Thanks Jack! On May 29, 3:02 pm, Jack Bauer rails-mailing-l...@andreas-s.net wrote: Robin Fisher wrote: Does anyone have any thoughts on how one could go about this?  The only thought I had was to find a way to automate a visit to every page and then store a copy of the page