Sun Mar 18 06:44:51 2012 UTC ()
Importing ruby-activesupport32 version 3.2.2.


## Rails 3.2.1 (January 26, 2012) ##

*   Documentation fixes and improvements.

*   Update time zone offset information. *Ravil Bayramgalin*

*   The deprecated `ActiveSupport::Base64.decode64` calls `::Base64.decode64`
    now. *Jonathan Viney*

*   Fixes uninitialized constant `ActiveSupport::TaggedLogging::ERROR`. *kennyj*


## Rails 3.2.0 (January 20, 2012) ##

*   ActiveSupport::Base64 is deprecated in favor of ::Base64. *Sergey Nartimov*

*   Module#synchronize is deprecated with no replacement.  Please use `monitor`
    from ruby's standard library.

*   (Date|DateTime|Time)#beginning_of_week accept an optional argument to
    be able to set the day at which weeks are assumed to start.

*   Deprecated ActiveSupport::MessageEncryptor#encrypt and decrypt. *Jos辿 Valim*

*   ActiveSupport::Notifications.subscribed provides subscriptions to events while a block runs. *fxn*

*   Module#qualified_const_(defined?|get|set) are analogous to the corresponding methods
    in the standard API, but accept qualified constant names. *fxn*

*   Added inflection #deconstantize which complements #demodulize. This inflection
    removes the righmost segment in a qualified constant name. *fxn*

*   Added ActiveSupport:TaggedLogging that can wrap any standard Logger class to provide tagging capabilities *DHH*

        Logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
        Logger.tagged("BCX") { Logger.info "Stuff" }                            # Logs "[BCX] Stuff"
        Logger.tagged("BCX", "Jason") { Logger.info "Stuff" }                   # Logs "[BCX] [Jason] Stuff"
        Logger.tagged("BCX") { Logger.tagged("Jason") { Logger.info "Stuff" } } # Logs "[BCX] [Jason] Stuff"

*   Added safe_constantize that constantizes a string but returns nil instead of an exception if the constant (or part of it) does not exist *Ryan Oblak*

*   ActiveSupport::OrderedHash is now marked as extractable when using Array#extract_options! *Prem Sichanugrist*

*   Added Array#prepend as an alias for Array#unshift and Array#append as an alias for Array#<< *DHH*

*   The definition of blank string for Ruby 1.9 has been extended to Unicode whitespace.
    Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. *Akira Matsuda, Damien Mathieu*

*   The inflector understands acronyms. *dlee*

*   Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern *Jos辿 Valim*

*   Added Time#all_day/week/quarter/year as a way of generating ranges (example: Event.where(created_at: Time.now.all_week)) *DHH*

*   Added instance_accessor: false as an option to Class#cattr_accessor and friends *DHH*

*   Removed ActiveSupport::SecureRandom in favor of SecureRandom from the standard library *Jon Leighton*

*   ActiveSupport::OrderedHash now has different behavior for #each and
    \#each_pair when given a block accepting its parameters with a splat. *Andrew Radev*

*   ActiveSupport::BufferedLogger#silence is deprecated.  If you want to squelch
    logs for a certain block, change the log level for that block.

*   ActiveSupport::BufferedLogger#open_log is deprecated.  This method should
    not have been public in the first place.

*   ActiveSupport::BufferedLogger's behavior of automatically creating the
    directory for your log file is deprecated.  Please make sure to create the
    directory for your log file before instantiating.

*   ActiveSupport::BufferedLogger#auto_flushing is deprecated.  Either set the
    sync level on the underlying file handle like this:

        f = File.open('foo.log', 'w')
        f.sync = true
        ActiveSupport::BufferedLogger.new f

    Or tune your filesystem.  The FS cache is now what controls flushing.

*   ActiveSupport::BufferedLogger#flush is deprecated.  Set sync on your
    filehandle, or tune your filesystem.



Status:

Vendor Tag:	TNF
Release Tags:	pkgsrc-base


(taca)
diff -r0 -r1.1.1.1 pkgsrc/devel/ruby-activesupport32/Makefile
diff -r0 -r1.1.1.1 pkgsrc/devel/ruby-activesupport32/DESCR
diff -r0 -r1.1.1.1 pkgsrc/devel/ruby-activesupport32/PLIST
diff -r0 -r1.1.1.1 pkgsrc/devel/ruby-activesupport32/distinfo

File Added: pkgsrc/devel/ruby-activesupport32/Attic/Makefile
# $NetBSD: Makefile,v 1.1.1.1 2012/03/18 06:44:50 taca Exp $

DISTNAME=	activesupport-${RUBY_RAILS_VERSION}
CATEGORIES=	devel

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	http://www.rubyonrails.org/
COMMENT=	Toolkit of support libraries (part of Rails 3.2)
LICENSE=	mit

DEPENDS+=	${RUBY_PKGPREFIX}-i18n>=0.6<1:../../devel/ruby-i18n
DEPENDS+=	${RUBY_PKGPREFIX}-multi_json>=1.0<2:../../textproc/ruby-multi_json

RUBY_RAILS_SUPPORTED=	32

.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"

File Added: pkgsrc/devel/ruby-activesupport32/Attic/DESCR
A toolkit of support libraries and Ruby core extensions extracted from
the Rails framework. Rich support for multibyte strings,
internationalization, time zones, and testing.

File Added: pkgsrc/devel/ruby-activesupport32/Attic/PLIST
@comment $NetBSD: PLIST,v 1.1.1.1 2012/03/18 06:44:50 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/CHANGELOG.md
${GEM_LIBDIR}/MIT-LICENSE
${GEM_LIBDIR}/README.rdoc
${GEM_LIBDIR}/lib/active_support.rb
${GEM_LIBDIR}/lib/active_support/all.rb
${GEM_LIBDIR}/lib/active_support/backtrace_cleaner.rb
${GEM_LIBDIR}/lib/active_support/base64.rb
${GEM_LIBDIR}/lib/active_support/basic_object.rb
${GEM_LIBDIR}/lib/active_support/benchmarkable.rb
${GEM_LIBDIR}/lib/active_support/buffered_logger.rb
${GEM_LIBDIR}/lib/active_support/builder.rb
${GEM_LIBDIR}/lib/active_support/cache.rb
${GEM_LIBDIR}/lib/active_support/cache/file_store.rb
${GEM_LIBDIR}/lib/active_support/cache/mem_cache_store.rb
${GEM_LIBDIR}/lib/active_support/cache/memory_store.rb
${GEM_LIBDIR}/lib/active_support/cache/null_store.rb
${GEM_LIBDIR}/lib/active_support/cache/strategy/local_cache.rb
${GEM_LIBDIR}/lib/active_support/callbacks.rb
${GEM_LIBDIR}/lib/active_support/concern.rb
${GEM_LIBDIR}/lib/active_support/configurable.rb
${GEM_LIBDIR}/lib/active_support/core_ext.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/access.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/extract_options.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/grouping.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/prepend_and_append.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/random_access.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/uniq_by.rb
${GEM_LIBDIR}/lib/active_support/core_ext/array/wrap.rb
${GEM_LIBDIR}/lib/active_support/core_ext/benchmark.rb
${GEM_LIBDIR}/lib/active_support/core_ext/big_decimal.rb
${GEM_LIBDIR}/lib/active_support/core_ext/big_decimal/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/class.rb
${GEM_LIBDIR}/lib/active_support/core_ext/class/attribute.rb
${GEM_LIBDIR}/lib/active_support/core_ext/class/attribute_accessors.rb
${GEM_LIBDIR}/lib/active_support/core_ext/class/delegating_attributes.rb
${GEM_LIBDIR}/lib/active_support/core_ext/class/subclasses.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date/acts_like.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date/calculations.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date/freeze.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date/zones.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date_time/acts_like.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date_time/calculations.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date_time/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/date_time/zones.rb
${GEM_LIBDIR}/lib/active_support/core_ext/enumerable.rb
${GEM_LIBDIR}/lib/active_support/core_ext/exception.rb
${GEM_LIBDIR}/lib/active_support/core_ext/file.rb
${GEM_LIBDIR}/lib/active_support/core_ext/file/atomic.rb
${GEM_LIBDIR}/lib/active_support/core_ext/file/path.rb
${GEM_LIBDIR}/lib/active_support/core_ext/float.rb
${GEM_LIBDIR}/lib/active_support/core_ext/float/rounding.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/deep_dup.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/deep_merge.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/diff.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/except.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/indifferent_access.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/keys.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/reverse_merge.rb
${GEM_LIBDIR}/lib/active_support/core_ext/hash/slice.rb
${GEM_LIBDIR}/lib/active_support/core_ext/integer.rb
${GEM_LIBDIR}/lib/active_support/core_ext/integer/inflections.rb
${GEM_LIBDIR}/lib/active_support/core_ext/integer/multiple.rb
${GEM_LIBDIR}/lib/active_support/core_ext/integer/time.rb
${GEM_LIBDIR}/lib/active_support/core_ext/io.rb
${GEM_LIBDIR}/lib/active_support/core_ext/kernel.rb
${GEM_LIBDIR}/lib/active_support/core_ext/kernel/agnostics.rb
${GEM_LIBDIR}/lib/active_support/core_ext/kernel/debugger.rb
${GEM_LIBDIR}/lib/active_support/core_ext/kernel/reporting.rb
${GEM_LIBDIR}/lib/active_support/core_ext/kernel/singleton_class.rb
${GEM_LIBDIR}/lib/active_support/core_ext/load_error.rb
${GEM_LIBDIR}/lib/active_support/core_ext/logger.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/aliasing.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/anonymous.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/attr_internal.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/attribute_accessors.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/delegation.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/deprecation.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/introspection.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/method_names.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/qualified_const.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/reachable.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/remove_method.rb
${GEM_LIBDIR}/lib/active_support/core_ext/module/synchronization.rb
${GEM_LIBDIR}/lib/active_support/core_ext/name_error.rb
${GEM_LIBDIR}/lib/active_support/core_ext/numeric.rb
${GEM_LIBDIR}/lib/active_support/core_ext/numeric/bytes.rb
${GEM_LIBDIR}/lib/active_support/core_ext/numeric/time.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/acts_like.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/blank.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/duplicable.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/inclusion.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/instance_variables.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/to_json.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/to_param.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/to_query.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/try.rb
${GEM_LIBDIR}/lib/active_support/core_ext/object/with_options.rb
${GEM_LIBDIR}/lib/active_support/core_ext/proc.rb
${GEM_LIBDIR}/lib/active_support/core_ext/process.rb
${GEM_LIBDIR}/lib/active_support/core_ext/process/daemon.rb
${GEM_LIBDIR}/lib/active_support/core_ext/range.rb
${GEM_LIBDIR}/lib/active_support/core_ext/range/blockless_step.rb
${GEM_LIBDIR}/lib/active_support/core_ext/range/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/range/cover.rb
${GEM_LIBDIR}/lib/active_support/core_ext/range/include_range.rb
${GEM_LIBDIR}/lib/active_support/core_ext/range/overlaps.rb
${GEM_LIBDIR}/lib/active_support/core_ext/regexp.rb
${GEM_LIBDIR}/lib/active_support/core_ext/rexml.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/access.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/behavior.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/encoding.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/exclude.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/filters.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/inflections.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/inquiry.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/interpolation.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/multibyte.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/output_safety.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/starts_ends_with.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/strip.rb
${GEM_LIBDIR}/lib/active_support/core_ext/string/xchar.rb
${GEM_LIBDIR}/lib/active_support/core_ext/time/acts_like.rb
${GEM_LIBDIR}/lib/active_support/core_ext/time/calculations.rb
${GEM_LIBDIR}/lib/active_support/core_ext/time/conversions.rb
${GEM_LIBDIR}/lib/active_support/core_ext/time/marshal.rb
${GEM_LIBDIR}/lib/active_support/core_ext/time/publicize_conversion_methods.rb
${GEM_LIBDIR}/lib/active_support/core_ext/time/zones.rb
${GEM_LIBDIR}/lib/active_support/core_ext/uri.rb
${GEM_LIBDIR}/lib/active_support/dependencies.rb
${GEM_LIBDIR}/lib/active_support/dependencies/autoload.rb
${GEM_LIBDIR}/lib/active_support/deprecation.rb
${GEM_LIBDIR}/lib/active_support/deprecation/behaviors.rb
${GEM_LIBDIR}/lib/active_support/deprecation/method_wrappers.rb
${GEM_LIBDIR}/lib/active_support/deprecation/proxy_wrappers.rb
${GEM_LIBDIR}/lib/active_support/deprecation/reporting.rb
${GEM_LIBDIR}/lib/active_support/descendants_tracker.rb
${GEM_LIBDIR}/lib/active_support/duration.rb
${GEM_LIBDIR}/lib/active_support/file_update_checker.rb
${GEM_LIBDIR}/lib/active_support/file_watcher.rb
${GEM_LIBDIR}/lib/active_support/gzip.rb
${GEM_LIBDIR}/lib/active_support/hash_with_indifferent_access.rb
${GEM_LIBDIR}/lib/active_support/i18n.rb
${GEM_LIBDIR}/lib/active_support/i18n_railtie.rb
${GEM_LIBDIR}/lib/active_support/inflections.rb
${GEM_LIBDIR}/lib/active_support/inflector.rb
${GEM_LIBDIR}/lib/active_support/inflector/inflections.rb
${GEM_LIBDIR}/lib/active_support/inflector/methods.rb
${GEM_LIBDIR}/lib/active_support/inflector/transliterate.rb
${GEM_LIBDIR}/lib/active_support/json.rb
${GEM_LIBDIR}/lib/active_support/json/decoding.rb
${GEM_LIBDIR}/lib/active_support/json/encoding.rb
${GEM_LIBDIR}/lib/active_support/json/variable.rb
${GEM_LIBDIR}/lib/active_support/lazy_load_hooks.rb
${GEM_LIBDIR}/lib/active_support/locale/en.yml
${GEM_LIBDIR}/lib/active_support/log_subscriber.rb
${GEM_LIBDIR}/lib/active_support/log_subscriber/test_helper.rb
${GEM_LIBDIR}/lib/active_support/memoizable.rb
${GEM_LIBDIR}/lib/active_support/message_encryptor.rb
${GEM_LIBDIR}/lib/active_support/message_verifier.rb
${GEM_LIBDIR}/lib/active_support/multibyte.rb
${GEM_LIBDIR}/lib/active_support/multibyte/chars.rb
${GEM_LIBDIR}/lib/active_support/multibyte/exceptions.rb
${GEM_LIBDIR}/lib/active_support/multibyte/unicode.rb
${GEM_LIBDIR}/lib/active_support/multibyte/utils.rb
${GEM_LIBDIR}/lib/active_support/notifications.rb
${GEM_LIBDIR}/lib/active_support/notifications/fanout.rb
${GEM_LIBDIR}/lib/active_support/notifications/instrumenter.rb
${GEM_LIBDIR}/lib/active_support/option_merger.rb
${GEM_LIBDIR}/lib/active_support/ordered_hash.rb
${GEM_LIBDIR}/lib/active_support/ordered_options.rb
${GEM_LIBDIR}/lib/active_support/railtie.rb
${GEM_LIBDIR}/lib/active_support/rescuable.rb
${GEM_LIBDIR}/lib/active_support/ruby/shim.rb
${GEM_LIBDIR}/lib/active_support/string_inquirer.rb
${GEM_LIBDIR}/lib/active_support/tagged_logging.rb
${GEM_LIBDIR}/lib/active_support/test_case.rb
${GEM_LIBDIR}/lib/active_support/testing/assertions.rb
${GEM_LIBDIR}/lib/active_support/testing/declarative.rb
${GEM_LIBDIR}/lib/active_support/testing/deprecation.rb
${GEM_LIBDIR}/lib/active_support/testing/isolation.rb
${GEM_LIBDIR}/lib/active_support/testing/mochaing.rb
${GEM_LIBDIR}/lib/active_support/testing/pending.rb
${GEM_LIBDIR}/lib/active_support/testing/performance.rb
${GEM_LIBDIR}/lib/active_support/testing/performance/jruby.rb
${GEM_LIBDIR}/lib/active_support/testing/performance/rubinius.rb
${GEM_LIBDIR}/lib/active_support/testing/performance/ruby.rb
${GEM_LIBDIR}/lib/active_support/testing/performance/ruby/mri.rb
${GEM_LIBDIR}/lib/active_support/testing/performance/ruby/yarv.rb
${GEM_LIBDIR}/lib/active_support/testing/setup_and_teardown.rb
${GEM_LIBDIR}/lib/active_support/time.rb
${GEM_LIBDIR}/lib/active_support/time/autoload.rb
${GEM_LIBDIR}/lib/active_support/time_with_zone.rb
${GEM_LIBDIR}/lib/active_support/values/time_zone.rb
${GEM_LIBDIR}/lib/active_support/values/unicode_tables.dat
${GEM_LIBDIR}/lib/active_support/version.rb
${GEM_LIBDIR}/lib/active_support/whiny_nil.rb
${GEM_LIBDIR}/lib/active_support/xml_mini.rb
${GEM_LIBDIR}/lib/active_support/xml_mini/jdom.rb
${GEM_LIBDIR}/lib/active_support/xml_mini/libxml.rb
${GEM_LIBDIR}/lib/active_support/xml_mini/libxmlsax.rb
${GEM_LIBDIR}/lib/active_support/xml_mini/nokogiri.rb
${GEM_LIBDIR}/lib/active_support/xml_mini/nokogirisax.rb
${GEM_LIBDIR}/lib/active_support/xml_mini/rexml.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec

File Added: pkgsrc/devel/ruby-activesupport32/Attic/distinfo
$NetBSD: distinfo,v 1.1.1.1 2012/03/18 06:44:50 taca Exp $

SHA1 (activesupport-3.2.2.gem) = e546fce92f862446390b7b98b97bfff52dbc11ff
RMD160 (activesupport-3.2.2.gem) = 1082bd82b49613a61a07f2775def54777f877ef5
Size (activesupport-3.2.2.gem) = 312832 bytes