Displaying 20 results from an estimated 60000 matches similar to: "using a secondary gems repository"
2012 Oct 18
3
Issues upgrading RSpec
My specs work fine with this in my Gemfile.lock:
grep rspec Gemfile.lock
     rspec (2.11.0)
       rspec-core (~> 2.11.0)
       rspec-expectations (~> 2.11.0)
       rspec-mocks (~> 2.11.0)
     rspec-core (2.11.0)
     rspec-expectations (2.11.1)
     rspec-mocks (2.11.1)
     rspec-rails (2.11.0)
       rspec (~> 2.11.0)
   rspec-rails (~> 2.11)
After "bundle update
2009 Jun 10
0
install pb(solved) : http://gems.rubyforge.org/ does not appear to be a repository
I''m installing ruby on rails on my local windows laptop,
piece of cake, ruby is adult now, so I thought...
http://rubyonrails.org/download
is clear :
install ruby with windows installer, ok
download gems, unzip and  "ruby setup.rb", ok
but "gem install rails" tells :
"http://gems.rubyforge.org/ does not appear to be a repository"
here I groan, is it the
2006 Mar 15
1
Strange behaviour of dates
Imagine a crud app that tracks people applying for a loan, here is the
layout I have:
Mysql database:
create table apps (
id int auto_increment primary key,
primary_id int not null,
secondary_id int null,
constraint fk_primary_id foreign key(primary_id) references (contacts.id),
constraint fk_secondary_id foreign key(secondary_id) references
(contacts.id))
create table contacts (
Id int
2006 Dec 04
0
Paypal and soap4r gems
WSDL conversion as proposed in the paypal plugin howto doesn''t work. Any
idea what goes wrong? See the output below.
rsp@hollerith:~/workspace/pptest/vendor/plugins/paypal$ wsdl2ruby.rb
--wsdl http://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl --type client
--force
F, [2006-12-04T16:30:43.136405 #11579] FATAL -- app: Detected an
exception. Stopping ... undefined method `new'' for
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
2008 Jun 24
1
Rails 'rake gems:install' error in windows
I am developing with rails at three platform
mac, windows, linux.
until Rails 2.1, we can describe gem dependencies in environment.rb.
( this one ~
http://ryandaigle.com/articles/2008/4/1/what-s-new-in-edge-rails-gem-dependencies
)
so I write environment.rb like below  for using will_paginate
...
  config.gem ''capistrano''
  config.gem
2009 Feb 14
3
I get “Missing these required gems”, but gems are installed
Hi,
since I updated ruby using Mac Ports (on Leopard) I have got several
problems and I also had to reinstall gems. Now when I run Mongrel I keep
getting the error "Missing these required gems" followed by the list of
gems that I required in environment.rb but that gems seems to be
correctly installed as I see running gem list.
I think that rails is looking for a previous installation,
2008 Apr 01
0
activerecord-sqlserver-adapter Gems Not Found HELP!!
Hi there,
I''m running ROR 2.x on Win32
tried to run gem install activerecord-sqlserver-adapter --source
http://gems.rubyonrails.org and get this:
D:\>gem install activerecord-sqlserver-adapter -source http://gems.rubyonrails.org
Bulk updating Gem source index for: http://gems.rubyonrails.org
ERROR:  While executing gem ... (Gem::GemNotFoundException)
    Could not find
2009 Jun 01
0
Forcing use of gem in vendor/gems?
Sorta surprised this isn''t a FAQ, but...
Maybe this is not good practice, but I have a gem that is both installed 
in the system and in vendor/gems.  The vendor/gems copy has some local 
mods.  Seems like the only way I could find to forced that one to be 
loaded for capistrano over the system one was to put:
$LOAD_PATH.insert 0, 
2007 Dec 18
0
Updating metadata for 11 gems ....
I justed typed "gem outdated" and got the following output in my  
terminal:
Updating metadata for 11 gems from http://gems.rubyforge.org
...........
complete
My first thought was that there are some gems neeeded to be updated -  
so I
typed it again and got the following:
bullet:~ root# gem outdated
bullet:~ root#
So there are no updates available.
What exactly does "Updating
2007 Jul 28
0
Bulk updating Gem source index for: http://gems.rubyforge.org
Hi all,
I''m having a bit of a problem with installing ruby on rails using gem
on Windows XP. after
gem install rails --include-dependencies
it say as follows
Bulk updating Gem source index for: http://gems.rubyforge.org
ERROR:  While executing gem ... (Gem::InstallError)
    invalid gem format for c:/ruby/lib/ruby/gems/1.8/cache/
actionpack-1.13.3.gem
Any idea what I''m doing
2007 Sep 12
0
rails & gems 0..9.2 problem
Got a slight issue with a rails plugin I wrote. when I updated to gems
0.9.2, there is some combination of what is happening in rails and gems
that is slightly changing what my array#pack(''c'') it returning. I
haven''t quite dug deep into this yet, but the plugin that I wrote works
with binary data, when I introduce gems 0.9.2 with rails 1.2.3 I get
problems with the
2007 Dec 21
3
error installing gems
Hi all.
        While installing gems i am getting an error:
              ERROR:  Error installing gem xml-simple-1.0.11.gem[.gem]:
install directory
              thname:e:/ruby/lib/ruby/gems/1.8/gems/xml-simple-1.0.11> not
absolute
       Ruby Version = 1.8.4
       Rails Version = 1.2.5
       Gems Version = 0.9.4
      can anybody provide any pointers???
      Thanks
 Arpit.
2007 Nov 21
3
Cannot freeze gems
Running rake rails:freeze:gems I got the following error:
[root@WiNN-Mesh web_interface]# /usr/local/bin/rake rails:freeze:gems
--trace
(in /usr/sbin/web_interface)
** Invoke rails:freeze:gems (first_time)
** Execute rails:freeze:gems
Freezing to the gems for Rails 1.2.5
rm -rf vendor/rails
mkdir -p vendor/rails
cd vendor/rails
rake aborted!
uninitialized constant Gem::GemRunner
2010 Sep 23
3
superclass mismatch for class Tempfile
I''ve been facing a problem when generating a model (or controller, ...). I''m
using rails 2.3.8 and ruby 1.8.7.
Has anybody been facing anything like this?
script/generate controller test
/usr/lib/ruby/1.8/tempfile.rb:12: superclass mismatch for class Tempfile
(TypeError)
    from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require''
   
2008 Jul 08
0
Installing my own gems on a Dreamhost account
Hey all,
Does anyone who uses Dreamhost have any experience installing your own
gems there?
On their wiki, I''ve found this:
http://wiki.dreamhost.com/index.php/Ruby_on_Rails#Using_Gems_Installed_in_Your_Home_Directory
And this:
http://wiki.dreamhost.com/index.php/Passenger
(down at the bottom)
But I seem to be too dumb to interpret these directions, since neither
one seems to work.
2008 Apr 15
4
Version Control (and gems)
1.  Full version control of a web app would include the constellation
of gems actually used.  I can do ''gem list'' and put that into a file
in version control but that could include unused gems.  That is, it
could include gems use by other projects.
And putting the whole gem in version control seem like overkill since
the authors do that.  But it might be safer.
Do we have a
2007 Apr 23
3
Troubles with using gems in Rails
Hi!
I''m observing some problems using gem inside Rails. My understanding is
that after following sequence in irb:
$ irb
irb(main):001:0>  require ''rubygems''
=> true
irb(main):002:0> require ''active_record''
=> true
irb(main):003:0> gem ''acts_as_taggable''
=> true
I should have access to acts_as_tagable mixins, like:
2008 Jul 29
0
Installing ruby gems
hi,
      I have installed ruby gems sucessfully in ubuntu 7.04
in the command line if check the version i am getting the following
error
gem -v
/usr/bin/gem:8:in `require'': no such file to load -- rubygems
(LoadError)
        from /usr/bin/gem:8
plz reply if anybody knows
-- 
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received
2008 Sep 03
0
When is init.rb run for gems?
If I place a gem in the vendor/gems folder will the init.rb file be ran?
Or do I HAVE to place the gem in the vendor/plugins folder?
Thanks for your help!
-- 
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