summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2011-12-16 12:15:16 +0000
committertaca <taca@pkgsrc.org>2011-12-16 12:15:16 +0000
commit22e337f52bfb16b1992654c2f5a199243d874490 (patch)
tree553c26735428a737420eacbd023f35557156cb94 /devel
parentdbba9b4bb62287ad71ac3dbc42937673d26f62d2 (diff)
downloadpkgsrc-22e337f52bfb16b1992654c2f5a199243d874490.tar.gz
Importing devel/ruby-activesupport31 package version 3.1.3.
## Rails 3.1.1 (October 7, 2011) ## * ruby193: String#prepend is also unsafe *Akira Matsuda* * Fix obviously breakage of Time.=== for Time subclasses *jeremyevans* * Added fix so that file store does not raise an exception when cache dir does not exist yet. This can happen if a delete_matched is called before anything is saved in the cache. *Philippe Huibonhoa* * Fixed performance issue where TimeZone lookups would require tzinfo each time *Tim Lucas* * ActiveSupport::OrderedHash is now marked as extractable when using Array#extract_options! *Prem Sichanugrist* ## Rails 3.1.0 (August 30, 2011) ## * ActiveSupport::Dependencies#load and ActiveSupport::Dependencies#require now return the value from `super` *Aaron Patterson* * Fixed ActiveSupport::Gzip to work properly in Ruby 1.8 *Guillermo Iguaran* * Kernel.require_library_or_gem was deprecated and will be removed in Rails 3.2.0 *Josh Kalderimis* * ActiveSupport::Duration#duplicable? was fixed for Ruby 1.8 *thedarkone* * ActiveSupport::BufferedLogger set log encoding to BINARY, but still use text mode to output portable newlines. *fxn* * ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. *Andrew White* * Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library *Jon Leighton* * New reporting method Kernel#quietly. *fxn* * Add String#inquiry as a convenience method for turning a string into a StringInquirer object *DHH* * Add Object#in? to test if an object is included in another object *Prem Sichanugrist, Brian Morearty, John Reitano* * LocalCache strategy is now a real middleware class, not an anonymous class posing for pictures. * ActiveSupport::Dependencies::ClassCache class has been introduced for holding references to reloadable classes. * ActiveSupport::Dependencies::Reference has been refactored to take direct advantage of the new ClassCache. * Backports Range#cover? as an alias for Range#include? in Ruby 1.8 *Diego Carrion, fxn* * Added weeks_ago and prev_week to Date/DateTime/Time. *Rob Zolkos, fxn* * Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! *Andrew White* * JSON decoding now uses the multi_json gem which also vendors a json engine called OkJson. The yaml backend has been removed in favor of OkJson as a default engine for 1.8.x, while the built in 1.9.x json implementation will be used by default. *Josh Kalderimis*
Diffstat (limited to 'devel')
-rw-r--r--devel/ruby-activesupport31/DESCR3
-rw-r--r--devel/ruby-activesupport31/Makefile14
-rw-r--r--devel/ruby-activesupport31/PLIST217
-rw-r--r--devel/ruby-activesupport31/distinfo5
4 files changed, 239 insertions, 0 deletions
diff --git a/devel/ruby-activesupport31/DESCR b/devel/ruby-activesupport31/DESCR
new file mode 100644
index 00000000000..90d0759df87
--- /dev/null
+++ b/devel/ruby-activesupport31/DESCR
@@ -0,0 +1,3 @@
+A toolkit of support libraries and Ruby core extensions extracted from
+the Rails framework. Rich support for multibyte strings,
+internationalization, time zones, and testing.
diff --git a/devel/ruby-activesupport31/Makefile b/devel/ruby-activesupport31/Makefile
new file mode 100644
index 00000000000..1c1baedcaae
--- /dev/null
+++ b/devel/ruby-activesupport31/Makefile
@@ -0,0 +1,14 @@
+# $NetBSD: Makefile,v 1.1.1.1 2011/12/16 12:15:16 taca Exp $
+
+DISTNAME= activesupport-${RUBY_RAILS_VERSION}
+CATEGORIES= devel
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://www.rubyonrails.org/
+COMMENT= Toolkit of support libraries and Ruby core extensions 3.1
+LICENSE= mit
+
+RUBY_RAILS_SUPPORTED= 31
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/ruby-activesupport31/PLIST b/devel/ruby-activesupport31/PLIST
new file mode 100644
index 00000000000..c6d885f2c4b
--- /dev/null
+++ b/devel/ruby-activesupport31/PLIST
@@ -0,0 +1,217 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2011/12/16 12:15:16 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/compressed_mem_cache_store.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/strategy/local_cache.rb
+${GEM_LIBDIR}/lib/active_support/cache/synchronized_memory_store.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/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/inheritable_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/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/requires.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_accessor_with_default.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/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/secure_random.rb
+${GEM_LIBDIR}/lib/active_support/string_inquirer.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
diff --git a/devel/ruby-activesupport31/distinfo b/devel/ruby-activesupport31/distinfo
new file mode 100644
index 00000000000..19a667ed4d4
--- /dev/null
+++ b/devel/ruby-activesupport31/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2011/12/16 12:15:16 taca Exp $
+
+SHA1 (activesupport-3.1.3.gem) = a36dddf8a1cda7b1b7e601ab3645628db705e518
+RMD160 (activesupport-3.1.3.gem) = a55b5f3b4d304dca257cf5ac302a1621cd14a091
+Size (activesupport-3.1.3.gem) = 309760 bytes