Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.ruby > #4313 > unrolled thread

[ANN] rubygems-update 1.8.2 Released

Started byEric Hodel <drbrain@segment7.net>
First post2011-05-11 19:54 -0500
Last post2011-05-16 01:13 -0500
Articles 6 — 3 participants

Back to article view | Back to comp.lang.ruby


Contents

  [ANN] rubygems-update 1.8.2 Released Eric Hodel <drbrain@segment7.net> - 2011-05-11 19:54 -0500
    Re: rubygems-update 1.8.2 Released Roger Pack <rogerpack2005@gmail.com> - 2011-05-12 20:22 -0500
      Re: rubygems-update 1.8.2 Released Ryan Davis <ryand-ruby@zenspider.com> - 2011-05-13 03:54 -0500
    Re: rubygems-update 1.8.2 Released Ryan Davis <ryand-ruby@zenspider.com> - 2011-05-16 01:56 -0500
      Re: rubygems-update 1.8.2 Released Roger Pack <rogerpack2005@gmail.com> - 2011-05-17 14:15 -0500
    Re: rubygems-update 1.8.2 Released Roger Pack <rogerpack2005@gmail.com> - 2011-05-16 01:13 -0500

#4313 — [ANN] rubygems-update 1.8.2 Released

FromEric Hodel <drbrain@segment7.net>
Date2011-05-11 19:54 -0500
Subject[ANN] rubygems-update 1.8.2 Released
Message-ID<25DC92FC-5231-4963-A055-B4A57C97403F@segment7.net>
rubygems-update version 1.8.2 has been released!

* <http://rubygems.org>
* <http://docs.rubygems.org>
* <http://help.rubygems.org>
* <http://github.com/rubygems>
* <http://rubyforge.org/projects/rubygems>

RubyGems is a package management framework for Ruby.

This gem is an update for the RubyGems software. You must have an
installation of RubyGems before this update can be applied.

See Gem for information on RubyGems (or `ri Gem`)

To upgrade to the latest RubyGems, run:

  $ gem update --system  # you might need to be an administrator or root

See UPGRADING.rdoc for more details and alternative instructions.

-----

If you don't have RubyGems installed, your can still do it manually:

* Download from: https://rubygems.org/pages/download
* Unpack into a directory and cd there
* Install with: ruby setup.rb  # you may need admin/root privilege

For more details and other options, see:

  ruby setup.rb --help

Changes:

=== 1.8.2 / 2011-05-11

After installing RubyGems 1.8 or newer you will see deprecations when loading
your exsting gems.  Run `gem pristine --all --no-extensions` to regenerate your
gem specifications safely.

Currently RubyGems does not save the build arguments used to build gems with
extensions.  You will need to run `gem pristine gem_with_extension --
--build-arg` to regenerate a gem with an extension where it requires special
build arguments.

* 2 minor enhancements:

  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
  * Print out a warning about missing executables.

* 3 bug fixes:

  * Added missing requires to fix various upgrade issues.
  * `gem pristine` respects multiple gem repositories.
  * setup.rb now execs with --disable-gems when possible


[toc] | [next] | [standalone]


#4453 — Re: rubygems-update 1.8.2 Released

FromRoger Pack <rogerpack2005@gmail.com>
Date2011-05-12 20:22 -0500
SubjectRe: rubygems-update 1.8.2 Released
Message-ID<f71d368beb802cccd391562cfed6e077@ruby-forum.com>
In reply to#4313
As an interesting note,
with this rails project:

https://github.com/rdp/musicformormons


with rubygems 1.3.7

config.gem and friends work well (if it's vendored, it accepts that, if 
it's installed, it accepts that.

However, with rubygems 1.8.2, no amount of running

$ rake gems:install

prevents it from displaying the following error message:

Missing these required gems:
  rack  = 1.1.0
  RedCloth
  ...

https://gist.github.com/969791

Cheers!
-r

-- 
Posted via http://www.ruby-forum.com/.

[toc] | [prev] | [next] | [standalone]


#4472 — Re: rubygems-update 1.8.2 Released

FromRyan Davis <ryand-ruby@zenspider.com>
Date2011-05-13 03:54 -0500
SubjectRe: rubygems-update 1.8.2 Released
Message-ID<27E0D632-7592-46CF-8D92-17CFA481E697@zenspider.com>
In reply to#4453
On May 12, 2011, at 18:22 , Roger Pack wrote:

> However, with rubygems 1.8.2, no amount of running
> 
> $ rake gems:install
> 
> prevents it from displaying the following error message:
> 
> Missing these required gems:
>  rack  = 1.1.0
>  RedCloth
>  ...

Unfortunately, that's a rails gem-hack issue... (I suspect).

Fortunately, I'm addressing at least a bit of it with my latest pull request on rails. I'm hoping we can get a release out to address the worst of it... but the hacks are piled on and I doubt that I'll fix it all.

[toc] | [prev] | [next] | [standalone]


#4588 — Re: rubygems-update 1.8.2 Released

FromRyan Davis <ryand-ruby@zenspider.com>
Date2011-05-16 01:56 -0500
SubjectRe: rubygems-update 1.8.2 Released
Message-ID<ED6D8BAE-1155-4775-AFF4-00099B9489EA@zenspider.com>
In reply to#4313
On May 15, 2011, at 23:13 , Roger Pack wrote:

>> rubygems-update version 1.8.2 has been released!
> 
> I've noticed that the "gem which" command seems to have changed.
> 
> $ gem which ruby-prof
> /Library/Ruby/Gems/1.8/gems/ruby-prof-0.10.7/lib/ruby-prof
> 
> (it lists a directory now, instead of a file).

3006 % gem unpack ruby-prof
Fetching: ruby-prof-0.4.0.gem (100%)
Unpacked gem: '/Users/ryan/ruby-prof-0.4.0'
3007 % l ruby-prof-0.4.0/lib/
total 16
0 ruby-prof/    8 ruby-prof.rb  8 unprof.rb

that also matches the ruby-prof.rb file given the rules of require.

[toc] | [prev] | [next] | [standalone]


#4686 — Re: rubygems-update 1.8.2 Released

FromRoger Pack <rogerpack2005@gmail.com>
Date2011-05-17 14:15 -0500
SubjectRe: rubygems-update 1.8.2 Released
Message-ID<a7130111c621722a4184ece1d3784762@ruby-forum.com>
In reply to#4588
> 0 ruby-prof/    8 ruby-prof.rb  8 unprof.rb
>
> that also matches the ruby-prof.rb file given the rules of require.

Ok that makes sense, though causes a bit of confusion.
Cheers!
-r

-- 
Posted via http://www.ruby-forum.com/.

[toc] | [prev] | [next] | [standalone]


#4591 — Re: rubygems-update 1.8.2 Released

FromRoger Pack <rogerpack2005@gmail.com>
Date2011-05-16 01:13 -0500
SubjectRe: rubygems-update 1.8.2 Released
Message-ID<724235ab269656759156523038ad7711@ruby-forum.com>
In reply to#4313
> rubygems-update version 1.8.2 has been released!

I've noticed that the "gem which" command seems to have changed.

$ gem which ruby-prof
/Library/Ruby/Gems/1.8/gems/ruby-prof-0.10.7/lib/ruby-prof

(it lists a directory now, instead of a file).
Expected?
Cheers!
-r

-- 
Posted via http://www.ruby-forum.com/.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.ruby


csiph-web