[#393742] Getting the class of an object. — Ralph Shnelvar <ralphs@...32.com>

Consider;

14 messages 2012/03/06

[#393815] arcadia IDE requires tcl/tk and ruby-tk — Thufir Hawat <hawat.thufir@...>

which or where tcl and tk does arcadia require? Is this a gem which I

13 messages 2012/03/13

[#393952] What’s the best way to check if a feature/class has been loaded? — Nikolai Weibull <now@...>

Hi!

18 messages 2012/03/21
[#393953] Re: What’s the best way to check if a feature/class has been loaded? — Xavier Noria <fxn@...> 2012/03/21

Active Support has recently added qualified_const_* methods to Module

[#393954] Re: What’s the best way to check if a feature/class has been loaded? — Xavier Noria <fxn@...> 2012/03/21

Ah, that won't work in 1.8.

[#393959] Re: What’s the best way to check if a feature/class has been loaded? — Nikolai Weibull <now@...> 2012/03/21

On Wed, Mar 21, 2012 at 16:43, Xavier Noria <fxn@hashref.com> wrote:

[#393960] Re: What’s the best way to check if a feature/class has been loaded? — Xavier Noria <fxn@...> 2012/03/21

On Wed, Mar 21, 2012 at 8:17 PM, Nikolai Weibull <now@bitwi.se> wrote:

[#393961] Re: What’s the best way to check if a feature/class has been loaded? — Nikolai Weibull <now@...> 2012/03/21

On Wed, Mar 21, 2012 at 20:48, Xavier Noria <fxn@hashref.com> wrote:

[#393962] Re: What’s the best way to check if a feature/class has been loaded? — Xavier Noria <fxn@...> 2012/03/21

On Wed, Mar 21, 2012 at 9:51 PM, Nikolai Weibull <now@bitwi.se> wrote:

[#393967] Re: What’s the best way to check if a feature/class has been loaded? — Nikolai Weibull <now@...> 2012/03/22

On Wed, Mar 21, 2012 at 22:11, Xavier Noria <fxn@hashref.com> wrote:

[#393969] Re: What’s the best way to check if a feature/class has been loaded? — Xavier Noria <fxn@...> 2012/03/22

On Thu, Mar 22, 2012 at 6:15 AM, Nikolai Weibull <now@bitwi.se> wrote:

[#394154] uninitialized constant SOCKSSocket — Resident Moron <lists@...>

I am running ruby 1.9.3 on a linux box. I would like to use

10 messages 2012/03/29

[#394160] Why z = Complex(1,2) rather than z = Complex.new(1,2)? — Ori Ben-Dor <lists@...>

What's this syntax, z = Complex(1,2), as opposed to z =

14 messages 2012/03/29

[#394175] shoes no such file to load -- rubygems — Mr theperson <lists@...>

I have installed shoes to develop GUI applications but when I try and

13 messages 2012/03/29

[#394201] Can't open url with a subdomain with an underscore — Jeroen van Ingen <lists@...>

I try to open the following URL: http://auto_diversen.marktplaza.nl/

10 messages 2012/03/30

[#394222] Ruby openssl ECC help plz — no name <lists@...>

I am confused on how to properly export public ECC key. I can see it

13 messages 2012/03/31

Re: [ANN] Rails 3.2.3.rc1 was released!

From: Santiago Pastorino <santiago@...>
Date: 2012-03-27 17:19:37 UTC
List: ruby-talk #394111
Just a minor fix, I will release the final version on March 30th

On Tue, Mar 27, 2012 at 2:17 PM, Santiago Pastorino
<santiago@wyeworks.com> wrote:
> Rails 3.2.3.rc1 has been released.
>
> ### IMPORTANT
>
> This release changes the default value of
> *config.active_record.whitelist_attributes* to true. =A0This change only
> affects newly generated applications so it should not cause any
> backwards compatibility issues for users who are upgrading but it may
> affect some tutorials and introductory material. =A0For more information
> see =A0the mass assignment section of the [ruby on rails security
> guide][1]
>
> We've also adjusted the dependencies on rack-cache and mail to address
> the recent security vulnerabilities with those libraries. If you are
> running a vulnerable version of mail or rack-cache you should update
> both gems to a safe version. We also fixed a couple of regressions in
> the render method.
>
> If there are no release blockers, then I will be releasing the final
> version on March 29th.
> If you find something please open an issue on github and let me know
> through email (santiago _at_ wyeworks.com), tweet
> ([spastorino](http://twitter.com/spastorino)) or cc me on the github
> issue.
>
> [1]: http://guides.rubyonrails.org/security.html#mass-assignment
>
> ### CHANGES since 3.2.2
>
> *ActionMailer*
>
> * =A0 Upgrade mail version to 2.4.3 *ML*
>
>
> *ActionPack*
>
> * =A0 Do not include the authenticity token in forms where remote: true
> as ajax forms use the meta-tag value *DHH*
>
> * =A0 Turn off verbose mode of rack-cache, we still have X-Rack-Cache to
> =A0 =A0check that info. Closes #5245. *Santiago Pastorino*
>
> * =A0 Fix #5238, rendered_format is not set when template is not
> rendered. *Piotr Sarnacki*
>
> * =A0 Upgrade rack-cache to 1.2. *Jos=E9 Valim*
>
> * =A0 ActionController::SessionManagement is deprecated. *Santiago Pastor=
ino*
>
> * =A0 Since the router holds references to many parts of the system like
> engines, controllers and the application itself, inspecting the route
> set can actually be really slow, therefore we default alias inspect to
> to_s. *Jos=E9 Valim*
>
> * =A0 Add a new line after the textarea opening tag. Closes #393 *rafaelf=
ranca*
>
> * =A0 Always pass a respond block from to responder. We should let the
> responder to decide what to do with the given overridden response
> block, and not short circuit it. *sikachu*
>
> * =A0 Fixes layout rendering regression from 3.2.2. *Jos=E9 Valim*
>
>
> *ActiveModel*
>
> * No changes
>
>
> *ActiveRecord*
>
> * =A0 Added find_or_create_by_{attribute}! dynamic method. *Andrew White*
>
> * =A0 Whitelist all attribute assignment by default. Change the default
> for newly generated applications to whitelist all attribute
> assignment. =A0Also update the generated model classes so users are
> reminded of the importance of attr_accessible. *NZKoz*
>
> * =A0 Update ActiveRecord::AttributeMethods#attribute_present? to return
> false for empty strings. *Jacobkg*
>
> * =A0 Fix associations when using per class databases. *larskanis*
>
> * =A0 Revert setting NOT NULL constraints in add_timestamps *fxn*
>
> * =A0 Fix mysql to use proper text types. Fixes #3931. *kennyj*
>
> * =A0 Fix #5069 - Protect foreign key from mass assignment through
> association builder. *byroot*
>
>
> *ActiveResource*
>
> * No changes
>
>
> *ActiveSupport*
>
> * No changes
>
>
> *Railties*
>
> * No changes
>
>
> ### SHA-1
>
> * SHA-1 (actionmailer-3.2.3.rc1.gem) =3D 6e945a152d2159918f05dcf4ef72e87d=
4b75c2bb
> * SHA-1 (actionpack-3.2.3.rc1.gem) =3D 1c5153c4b4865207193d7e8af9a09b4936=
83bc55
> * SHA-1 (activemodel-3.2.3.rc1.gem) =3D eae6bb4cc275e167eb28b35cd8b0a4646=
6dd3c88
> * SHA-1 (activerecord-3.2.3.rc1.gem) =3D 8a2709c7517d9d91911ad3fbfe82af19=
422b5e24
> * SHA-1 (activeresource-3.2.3.rc1.gem) =3D
> 770a7120f8148f6391a717c03f08cdb76dcd64ac
> * SHA-1 (activesupport-3.2.3.rc1.gem) =3D 1e89864fc28c7b8cca67eb93696f1b2=
ecf556b81
> * SHA-1 (rails-3.2.3.rc1.gem) =3D b1dec2b8c59c78111479e3dc36c106e54fe11f1=
a
> * SHA-1 (railties-3.2.3.rc1.gem) =3D 9fbbb616cd868d1070bf04adeda50c373550=
c349
>
> You can find an exhaustive list of changes on
> [github](https://github.com/rails/rails/compare/v3.2.2...v3.2.3.rc1).
>
> Thanks to everyone, this is your last chance to hold the release if
> something goes wrong. So please, give this release a try :).
>
> --
>
> Santiago Pastorino
> WyeWorks Co-founder
> http://www.wyeworks.com
>
> Twitter: http://twitter.com/spastorino
> Github: http://github.com/spastorino
>

In This Thread

Prev Next