aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/actionpack.gemspec
Commit message (Collapse)AuthorAgeFilesLines
* point at rack masterAaron Patterson2015-08-201-1/+1
|
* Remove concurrent-ruby from Action Pack gemspecRafael Mendonça França2015-07-141-1/+0
| | | | It is already on Active Support
* Replaced `ActiveSupport::Concurrency::Latch` with concurrent-ruby.Jerry D'Antonio2015-07-131-0/+1
| | | | | | | | | | The concurrent-ruby gem is a toolset containing many concurrency utilities. Many of these utilities include runtime-specific optimizations when possible. Rather than clutter the Rails codebase with concurrency utilities separate from the core task, such tools can be superseded by similar tools in the more specialized gem. This commit replaces `ActiveSupport::Concurrency::Latch` with `Concurrent::CountDownLatch`, which is functionally equivalent.
* Upgrade to Ruby 2.2.2Jon Atack2015-04-141-1/+1
| | | | and fix the grammar in the ruby_version_check.rb user message.
* Merge pull request #19252 from kaspth/single-escaping-strip-tagsRafael Mendonça França2015-03-101-1/+1
|\ | | | | Let strip_tags leave HTML escaping to Rails.
| * Let strip_tags leave HTML escaping to Rails.Kasper Timm Hansen2015-03-101-1/+1
| | | | | | | | Prevents double escaping errors, such as "&" becoming "&".
* | Target Ruby 2.2.1 in gemspecsPeter Suschlik2015-03-091-1/+1
|/ | | | This is a follow-up to #19257
* Bump rack-test to fix nil values being sent to `parse_nested_query`eileencodes2015-03-011-1/+1
| | | | | | | | | | I found that nil values were being incorrectly sent to `parse_nested_query` in Rack. Originally it was thought that Rails was doing something incorrect but it was actually rack-test. This was fixed in brynary/rack-test@4a4b2c1 and is no longer an issue. This commit bumps rack-test in Rails so changes to Rack don't cause failures. See rack/rack#813 for more information.
* Relax Rack dependencySantiago Pastorino2015-01-121-1/+1
| | | | | | | | | Rack is very carefully released, we should be able to upgrade minor versions without much effort. We are a bunch of Rails core who are also Rack core members so there won't be any issue with that. And in case there's something wrong, we should fix on both sides. Even though, doesn't seem like we will have a 1.7 version, this will be useful as an example for when we go with Rack 2.0. We should ~> 2.0.
* Require Ruby 2.2 for Rails 5.0claudiob2014-12-261-1/+1
| | | | | Stems from [this comment](https://github.com/rails/rails/pull/18203#issuecomment-68138096) by @robin850 and by the blog post http://weblog.rubyonrails.org/2014/12/19/Rails-4-2-final
* Use released rackGodfrey Chan2014-12-191-1/+1
| | | | `rack.version` was bumped in https://github.com/rack/rack/commit/28e77c710ac2ddb35c436d78d72e28f28f964446
* Bump required Ruby version to 2.1.0claudiob2014-11-281-1/+1
| | | | | | | | | [This article](http://weblog.rubyonrails.org/2014/8/20/Rails-4-2-beta1/#maintenance-consequences-and-rails-5-0) states that: > Rails 5.0 is in most likelihood going to target Ruby 2.2. Before the exact minimum version is fully decided, @arthurnn [suggests](https://github.com/rails/rails/pull/17830#issuecomment-64940383) that **at least** version 2.1.0 **must** be required by the `gemspec` files.
* Bump to rack 1.6.0.beta2Santiago Pastorino2014-11-271-1/+1
|
* Use released rails-dom-testingRafael Mendonça França2014-11-251-1/+1
|
* Use released rails-dom-testingRafael Mendonça França2014-10-161-1/+1
|
* Use released rails-html-sanitizer and rails-deprecated_sanitizerGodfrey Chan2014-09-261-1/+1
|
* Use released rails-dom-testingRafael Mendonça França2014-09-251-1/+1
|
* Ship with rails-html-sanitizer instead.Kasper Timm Hansen2014-09-031-1/+1
|
* Use released rails-deprecated_sanitizerRafael Mendonça França2014-08-191-1/+1
|
* Fix the rails-dom-testing dependecyRafael Mendonça França2014-08-191-0/+1
|
* Bump rack dependencySantiago Pastorino2014-08-181-1/+1
|
* Prepare for partial release.Kasper Timm Hansen2014-08-171-2/+1
| | | | | | | - Default to Rails::DeprecatedSanitizer in ActionView::Helpers::SanitizeHelper. - Add upgrade notes. - Add sanitizer to new applications Gemfiles. - Remove 'rails-dom-testing' as a dependency.
* Defining the right dependenciesRafael Mendonça França2014-07-151-0/+2
|
* Upgraded rackJarmo Isotalo2014-05-191-1/+1
| | | | | | | | As Rack has some non backwards compatible changes added required modifications to keep behaviour in rails close to same as before. Also modified generators to include rack/rack for not yet released version of rack
* Retain ActionPack dependency on ActionViewŁukasz Strzałkowski2013-12-051-1/+1
|
* Remove tzinfo dependency from Action PackErik Michaels-Ober2013-09-171-5/+4
| | | | | This gem is used by Active Support but it should not be a dependency of Action Pack.
* Remove dependency on AVŁukasz Strzałkowski2013-08-251-3/+3
|
* Add bare actionview gem to the root directoryPiotr Sarnacki2013-06-201-2/+2
| | | | | This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack.
* Bump TZInfo version to 0.3.37 based on version v2013b of the underlying tz data.kennyj2013-03-261-1/+1
|
* Revert "instruct RDoc to only parse Ruby files under lib [Fixes #9779]"Xavier Noria2013-03-181-1/+1
| | | | This reverts commit c24528fbc94dea9946a563be3bed9559583bdc57.
* instruct RDoc to only parse Ruby files under lib [Fixes #9779]Xavier Noria2013-03-181-1/+1
|
* Bump rack-test dependency to 0.6.2Rahul P. Chaudhari2013-02-141-1/+1
|
* Bump rack dependency to 1.5.2Santiago Pastorino2013-02-081-1/+1
|
* Integrate Action Pack with Rack 1.5Carlos Antonio da Silva2013-01-251-1/+1
| | | | | | All ActionPack and Railties tests are passing. Closes #8891. [Carlos Antonio da Silva + Santiago Pastorino]
* Bump rack dependency to 1.4.3Carlos Antonio da Silva2013-01-081-1/+1
| | | | | | | It includes security bug fixes and changes the initialization of Rack::File to accept a hash, otherwise generating warnings. See 295806e for the warnings fix.
* Integrate Journey into Action DispatchAndrew White2012-12-191-1/+0
| | | | | | | | Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49.
* Revert "Omit directories from gemspec.files for RubyGems 2 compat."Jeremy Kemper2012-12-091-1/+1
| | | | | | Obviated by rubygems/rubygems@486ed83cc8e706069213c5d406122f4cfcca9e7f This reverts commit bb8923dee093b615615cdfb83b34d1b0bb254f25.
* Omit directories from gemspec.files for RubyGems 2 compat.Jeremy Kemper2012-12-081-1/+1
| | | | | | RG2 packager expects each spec.files path to be a file and bombs when it tries to tarball a dir. May revert if rubygems/rubygems#413 is accepted.
* Clean up gemspecsVinny Diehl2012-11-081-13/+15
| | | | | | | | | | Organized the gemspec files a bit. * Made quotes more consistent (single quotes dominated, so I used that). * Moved license line down a line, separating it logically, and removed the extra whitespace before its = operator. * Minor whitespace fixes.
* Use Rack::Cache middleware only if is in GemfileGuillermo Iguaran2012-10-011-1/+0
|
* Bump builder dependencies in Active Model and Action PackCarlos Antonio da Silva2012-09-071-1/+1
|
* Fix build. Bump Journey requirements to 2.0.0.kennyj2012-07-241-1/+1
|
* Bump Journey requirements to 1.0.4Andrew White2012-07-231-1/+1
| | | | | There are some Action Pack tests for regressions from 3.1 that require a later version of Journey to pass so bump to the current version.
* Remove ActiveModel dependency from ActionPackGuillermo Iguaran2012-06-301-1/+1
| | | | | | | | ActiveModel is used in ActionPack for ActiveModel::Naming for a few, mostly optional aspects of ActionPack related to automatically converting an ActiveModel compliant object into a key for params and routing. It uses only three methods of ActiveModel (ActiveModel::Naming.route_key, ActiveModel::Naming.singular_route_key and ActiveModel::Naming.param_key).
* Bump tzinfo gem.kennyj2012-06-171-1/+1
|
* Add license field to gemspecs, by Matt GriffinMatt Griffin2012-05-231-0/+1
|
* Remove sprockets dependency on actionpackGuillermo Iguaran2012-03-131-1/+0
|
* Use latest rack-cache.José Valim2012-03-061-1/+1
|
* bumping journey to 1.0.1Aaron Patterson2012-01-261-1/+1
|
* use rack 1.4.1Sergey Nartimov2012-01-231-1/+1
|