aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile.lock
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Add prepared statements support for `Mysql2Adapter`"Sean Griffin2015-11-261-2/+2
|
* Upgrade to listen 3.0.5, re-enable testsGodfrey Chan2015-11-261-2/+2
| | | | | | | | | | In listen 3.0.4 and below, the `#stop` method on the notification backends are a no-op, meaning that we are leaking them per test. This ended up triggering another bug in Ruby that causes our builds to fail randomly on CI. listen bug: https://github.com/guard/listen/issues/353 ruby bug: https://bugs.ruby-lang.org/issues/11744
* Add prepared statements support for `Mysql2Adapter`Ryuta Kamizono2015-11-261-2/+2
|
* Use latest byebugTakashi Kokubun2015-11-181-1/+1
|
* Using released concurrent-rubyRafael Mendonça França2015-11-161-2/+2
|
* upgrade listen to 3.0.4Xavier Noria2015-11-081-2/+2
| | | | 3.0.3 has a bug in OS X.
* implements an evented file update checker [Puneet Agarwal]Xavier Noria2015-11-081-0/+10
| | | | | | | | | | | | This is the implementation of the file update checker written by Puneet Agarwal for GSoC 2015 (except for the tiny version of the listen gem, which was 3.0.2 in the original patch). Puneet's branch became too out of sync with upstream. This is the final work in one single clean commit. Credit goes in the first line using a convention understood by the contrib app.
* Require only necessary concurrent-ruby classes.Jerry D'Antonio2015-11-041-2/+2
|
* Upgrade all the gemsRafael Mendonça França2015-10-201-36/+47
|
* use methods for accessing the cache control headersAaron Patterson2015-10-061-1/+1
| | | | | Use the methods rack provides so we don't have to worry about the exact header key.
* etag header is in Rack, so use it's response methodsAaron Patterson2015-10-061-1/+1
| | | | | Rack implements the Etag header manipulation methods, so we can use those instead of ours.
* Introduce `Headers#add`. Move `Response#add_header` upstream.Jeremy Daer2015-10-031-1/+1
| | | | | | | * Introduce `ActionDispatch::Http::Headers#add` to add a value to a multivalued header. * Move `Response#add_header` upstream: https://github.com/rack/rack/pull/957 * Match upstream `Response#have_header?` -> `#has_header?` name change.
* YAGNI concurrent-ruby master branch now that 1.0.0.pre3 is released with ↵Jeremy Daer2015-10-031-7/+1
| | | | fixes for warnings and circular require
* run against edge sass to eliminate circular require warningsAaron Patterson2015-09-301-2/+8
|
* Fixed concurrent-ruby warnings.Jerry D'Antonio2015-09-291-4/+4
| | | | | Bumped version of concurrent-ruby to 1.0.0.pre3, which fixes all interpreter warnings.
* Bump concurrent-ruby to shush circular require warningJeremy Daer2015-09-291-1/+1
|
* Eliminate overlapping `app/assets` load pathJeremy Daer2015-09-291-5/+11
| | | | | | | | | | * Move `app/assets/manifest.js` to `app/assets/config/manifest.js`. Avoid the suggestion that you can/should deep-link `stylesheets/foo`. * Pull in all toplevel stylesheets and JavaScripts, not just `application.js` and `.css`. Demonstrate how to use `link_directory` with a specified `.js`/`.css` type. * Fix RAILS_ENV handling in assets tests. * Shush warnings spam from third-party libs that distract from tests.
* Update to latest turbolinksAndrew White2015-09-211-1/+1
|
* Use master version of Turbolinks gemAndrew White2015-09-211-3/+9
| | | | | Since `alias_method_chain` is deprecated we need to use the master version of the Turbolinks gem as it has support for using `Module#prepend`.
* Replaced `ThreadSafe::Map` with successor `Concurrent::Map`.Jerry D'Antonio2015-09-191-3/+2
| | | | | | | The thread_safe gem is being deprecated and all its code has been merged into the concurrent-ruby gem. The new class, Concurrent::Map, is exactly the same as its predecessor except for fixes to two bugs discovered during the merge.
* Do not use conditionals at GemfileRafael Mendonça França2015-09-141-5/+5
| | | | This will make the Gemfile.lock be dirty in some environments
* Ruby 2.2.3 in windows need nokogiri 1.6.7.rc3 as it's the only version ↵Eric Guo2015-09-121-28/+31
| | | | having correct pre-compiled so
* Use released mysql2Rafael Mendonça França2015-09-081-7/+2
|
* Support mysql2 0.4.0, first release with prepared statements supportJeremy Daer2015-09-071-2/+7
| | | | Known failure on Ruby 2.3/trunk: brianmario/mysql2#671
* stop using deprecated Abstract::ID classAaron Patterson2015-09-041-1/+1
|
* stop inheriting from Rack::RequestAaron Patterson2015-09-041-1/+1
| | | | | | Just include the modules necessary in the Request object to implement the things we need. This should make it easier to build delegate request objects because the API is smaller
* use `Rack::Utils.unescape_path` to unescape pathsAaron Patterson2015-09-041-1/+1
| | | | | | Escaping and unescaping paths is different than query parameters, and we need to respect that. This commit uses the new method in Rack to escape and unescape paths. Fixes #11816
* Add windows version of nokogiriRafael Mendonça França2015-09-011-0/+4
|
* Require sprockets-rails >= 2claudiob2015-09-011-1/+1
| | | | | | | | | | Fixes https://github.com/rails/rails/commit/4d157ea8c15186c4903fa83f2dc51a5f78d13a37 Without any specification about the version of sprockets-rails, running a `bundle install` on a brand new app might result in sprockets 0.0.1 being installed. However, the minimum requirement is sprockets-rails 2 (see https://github.com/rails/rails/pull/17752/files)
* Add master branch to github gems to be able to use local clonesCarlos Antonio da Silva2015-09-011-4/+8
|
* implement the API required by the abstract Rack request.Aaron Patterson2015-08-271-1/+1
|
* use the non-hash dependent Rack utils APIAaron Patterson2015-08-271-1/+1
| | | | eventually we will refactor this to not know about header hashes
* Initial implementation of ActiveJob AsyncAdapter.Jerry D'Antonio2015-08-251-1/+1
|
* use a request object in the session middlewareAaron Patterson2015-08-221-3/+3
| | | | | This commit allows us to use one request object rather than allocating multiple request objects to deal with the session.
* dup the request and mutate its headers object.Aaron Patterson2015-08-211-3/+3
| | | | duping the request will dup it's underlying env hash.
* point at rack masterAaron Patterson2015-08-201-27/+27
|
* Migrate to Sprockets 4.Andrei Istratii2015-08-191-3/+23
|
* Merge pull request #20647 from twalpole/method_source_dependencyRafael Mendonça França2015-08-141-0/+1
|\ | | | | Add method_source dependency to activesupport
| * Add method_source dependency to activesupportThomas Walpole2015-07-291-0/+1
| |
* | implement `provider_job_id` for `queue_classic`.Yves Senn2015-08-131-3/+8
| | | | | | | | | | | | The latest, currently unreleased, version of queue_classic is required for this to work. See https://github.com/QueueClassic/queue_classic/pull/262 for more details.
* | Update Gemfile.lockRafael Mendonça França2015-08-101-53/+48
|/
* Fix Gemfile.lockRafael Mendonça França2015-07-141-1/+0
|
* Replaced `ActiveSupport::Concurrency::Latch` with concurrent-ruby.Jerry D'Antonio2015-07-131-0/+3
| | | | | | | | | | 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.
* Add gemfile entry for GlobalID until a new release is cut.Kasper Timm Hansen2015-07-051-3/+9
|
* Update bundler to v1.10.4Tim Rogers2015-06-171-1/+1
|
* let's use the latest bundler version.Yves Senn2015-06-131-1/+1
|
* Ensure symbols passed to `select` are always quotedSean Griffin2015-05-301-1/+1
| | | | | | | | | | | | | | | | | Our general contract in Active Record is that strings are assumed to be SQL literals, and symbols are assumed to reference a column. If a from clause is given, we shouldn't include the table name, but we should still quote the value as if it were a column. Upon fixing this, the tests were still failing on SQLite. This was because the column name being returned by the query was `"\"join\""` instead of `"join"`. This is actually a bug in SQLite that was fixed a long time ago, but I was using the version of SQLite included by OS X which has this bug. Since I'm guessing this will be a common case for contributors, I also added an explicit check with a more helpful error message. Fixes #20360
* Generate Bundler 1.10.1 lockfileSamuel E. Giddins2015-05-281-0/+3
|
* Unlock sneakers adapter versionSemyon Pupkov2015-04-281-7/+7
|
* Use latest sprockets-rails on internal devArthur Neves2015-04-261-7/+14
|