Displaying 20 results from an estimated 10000 matches similar to: "Ruby Gems version issue"
2007 Mar 16
5
Bad ActiveSupport gem in gem repository?
All,
I''m attempting to update my gems to 1.2 and I get the following:
Install required dependency activesupport? [Yn] Y
ERROR: While executing gem ... (Gem::InstallError)
invalid gem format for
c:/ruby/lib/ruby/gems/1.8/cache/activesupport-1.4.2.g
em
Anyone else seeing this? Anyone willing to try it to see what''s up?
Thanks,
Wes
--
Posted via
2007 Dec 28
3
Cannot install wxruby on Leopard
I''d like to try wxruby on my MacBook Pro with Leopard (10.5.1)
But I have troubles with gem.
I can see the gem is in rubyforge:
$ gem list wxruby -r
*** REMOTE GEMS ***
wxruby (1.9.2, 1.9.1, 1.9.0)
wxrubylayouts (0.0.3, 0.0.2, 0.0.1)
but when I try to install it:
$ sudo gem install wxruby -r
Password:
ERROR: could not find wxruby locally or in a repository
Any suggestion?
Thanks
2009 Mar 20
5
Rails requires RubyGems >= 1.3.1 (you have 1.1.1) on OSX
Hi, I just installed rails 2.3.2 and after
rails test
cd test
rake db:migrate
mongrel_rails start
I get this:
** Starting Mongrel listening at 0.0.0.0:3000
** Starting Rails with development environment...
Rails requires RubyGems >= 1.3.1 (you have 1.1.1). Please `gem update
--system` and try again.
gem -v => 1.3.1
Any ideas for a solution? Is it possible I have more than one
2006 Jun 28
15
Its here! RubyGems Release 0.9.0
Read about it here:
http://rubyforge.org/forum/forum.php?forum_id=7575
--
Posted via http://www.ruby-forum.com/.
2006 Jun 12
1
Instant Rails and your own applications
?I like your form css at
http://www.pllite.com/projects/new
Nice stuff!
Stuart
-----Original Message-----
From: ian.connor at gmail.com
Sent: Monday, June 12, 2006 3:14 AM -07:00
To: instantrails-users at rubyforge.org
Subject: [Instantrails-users] Instant Rails and your own applications
Here is the download link for the Instant Rails version of ProjectLounge
Lite.
2010 Feb 17
7
ruby update on OS X 10.5 and I now this: "Rails requires RubyGems >= 1.3.2"
Hi all,
I''ve seen other messages on this problem, but I still can''t get back
to working with Rails after using MacPorts to install a recent version
of ruby on my mac OS X 10.5 (ruby 1.8.7.)
I''m getting: "Rails requires RubyGems >= 1.3.2."
In fact, I am running rubygems 1.3.5.
Here are some settings of mine that seemed important in previous posts
on this
2015 Dec 01
3
RS-232 Port with Nut
Yes I do have Linux. I have assigned the ups.conf file as seen below..
[testups]
Driver = usbhid-ups
Port = /dev/ttyUSB0
When I try to start the ups driver I get the following error...
$ sudo upsdrvctl start
Network Ups Tools - UPS driver controller 2.7.1
Network Ups Tools - Generic HID driver 0.38 (2.7.1)
USB communication driver 0.32
No matching HID UPS found
Driver failed to start (exit
2006 Jan 29
3
Depot example doesn''t work on my pc
Hi everyone,
I wrote a post last week, but unfortunatly I had no time to try.
First of all I''d like to thank you, for every your answer, and
then I''m sorry for the late of my answer. I REALLY appreciated them.
So I did as you told me, but this problem is still on.
First of all, I changed the server script file as you told me, so I
deleted the first line:
2005 Mar 26
2
Problem with GEM
I try the following command:
gem cleanup
and I get this:
C:\Ruby\bin>"c:\Ruby\bin\ruby.exe" "c:\Ruby\bin\gem" cleanup
ERROR: While executing gem ... (RuntimeError)
Unknown command cleanup
Even if I try:
gem cleanup rails
I get the same thing.
Anyone know what I am doing wrong?
Thanks,
Chad
2006 Mar 14
2
acts_as_paranoid and :include
Will the find from acts_as_paranoid filter down to an :include?
For instance
class parent
acts_as_paranoid
has_many: children
end
and
class child
acts_as_paranoid
belongs_to :parent
end
Then if you
Parent.find(:all, :include => children)
you will get all the children if they are deleted or not. I guess the find
that filters out the deleted_at is null does not filter down to the includes
2015 Nov 30
3
RS-232 Port with Nut
Hello All,
I am trying to read my Eaton 5P 1550 with the Rs-232 port but I cannot get nut to read the driver from my Rs-232 to USB adaptor.
When I perform lsusb -t it says my B&B electronics adaptor uses driver
ftdi_sio
How do I get the nut to read information coming from that??
Thanks,
Connor
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Nov 02
2
Remote IP Phone's
Hi all,
I am wondering what people are doing for security when registering IP phone's remotely if you do not have the equipment to do a VPN tunnel at the remote site. The phone I would be working with mainly is the Polycom lineup.
Thanks,
Connor Spiess
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jun 27
25
1.1.3 available.
Hello,
DHH has just announced the release of Rails 1.1.3
http://weblog.rubyonrails.org/2006/6/27/rails-1-1-3-security-fix-and-minor-fixes
rails-1.1.3
activerecord-1.14.3
actionpack-1.12.2
actionmailer-1.2.2
actionwebservice-1.1.3
The announce without the repetition :)
"Rails 1.1.3: Security fix and minor fixes
Posted by David June 27, 2006 @ 08:07PM
We''ve found and fixed a
2009 Sep 30
17
Apache2.2 + what to get Rails
Me: not experienced with Rails or Ruby,
Problem: Ubuntu 9.04 server in my shop ...couldn''t get Apache2.2 +
Passenger + Rails to work for Redmine. (No answer at Redmine list and
I don''t think its their problem anyway). Also couldn''t get Apache2.2
and just Rails to work, though some people said it would. Webrick
works.
Goal: run Redmine on a server that also runs PHP
2017 Oct 11
2
Debugging JIT'ed code with ORC JIT?
Hi Connor,
...The LLVM documentation has a page at
> llvm.org/docs/DebuggingJITedCode.html
> showing an example of using gdb to debug MCJIT’ed code, but has no mention
> of ORC JIT.
What debugging support MCJIT has is provided by the RuntimeDyld utility,
which ORC shares. I would expect anything in that document to apply to ORC
as well, though I haven't tested it personally.
2015 Dec 07
2
Stopping Machine powering off
Well I just need to monitor the UPS battery for testing and I do about 10 UPS's a day. So having to restart my computer every time gets old real quick.
-----Original Message-----
From: Rob Crittenden [mailto:rcrit at greyoak.com]
Sent: Monday, December 07, 2015 11:49 AM
To: Marks, Connor; nut-upsdev at lists.alioth.debian.org
Subject: Re: [Nut-upsdev] Stopping Machine powering off
On
2017 Nov 02
2
Publication Request: The Design of a Custom 32-bit RISC CPU and LLVM Compiler Backend
Hey everyone,
I would like to add my graduate paper to the list of LLVM publications:
http://scholarworks.rit.edu/theses/9550/
Here's the abstract if anyone is interested:
*The Design of a Custom 32-bit RISC CPU and LLVM Compiler Backend*
Compiler infrastructures are often an area of high interest for research.
> As the necessity for digital information and technology increases, so does
2006 Jun 02
4
Web app developed in WInXP want to run on Linux
Hi All,
I have developed a web application using RoR on Window-XP. Now my server
is on linux and want to get this running on linux machine. I tried
starting the server but it failed to boot in boot.rb at this line:
unless RUBY_PLATFORM =~ /mswin32/
require ''pathname''
root_path = Pathname.new(root_path).cleanpath(true).to_s
end
so I changed(even though the file says
2006 May 26
7
Instant Rails and your own applications
Hi,
I want to make an open source rails project as easy as possible to install.
Can I use Instant Rails for this? I treid to look at the FAQ but could not
see this was possible.
Ideally I would like to have Instant Rails install Ruby, Rails, MySql, etc
and then have it add my application and add the mysql user (could be just
root also) and then the sql for creating the tables.
Sound like fun
2007 Jun 23
2
type image submit tags on IE dropping the params
I have noticed that on IE, the @params[:commit] does not come through on
image submit tags, but it does when the image is removed.
this fails:
<%= submit_tag( "Schedule", {:type => "image",
:src=>"/images/buttons/schedulecard.gif", :alt=>"Schedule Card",
:class=>"button"})%>
but this works:
<%= submit_tag(