aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
Commit message (Collapse)AuthorAgeFilesLines
* edit pass over the project Gemfile [ci skip]Xavier Noria2015-10-121-18/+17
| | | | | | | | | | * Revises the name of Rails components (they have a space). * Uniform word wrap at column 80.. * Uniform punctuation, according to our guidelines. * Minor edits of details seen in passing.
* update to ruby-oci8 - 2.2.0Gaurav Sharma2015-10-101-1/+1
| | | It stopped `ruby 1.8` support, we already switched to `ruby >= 2.2.2`
* Missed Gemfile change in f849cfe36c585fbc58c4a5fd91b0ae1571d38bcbJeremy Daer2015-10-031-4/+0
|
* run against edge sass to eliminate circular require warningsAaron Patterson2015-09-301-1/+3
|
* Fixed concurrent-ruby warnings.Jerry D'Antonio2015-09-291-1/+1
| | | | | Bumped version of concurrent-ruby to 1.0.0.pre3, which fixes all interpreter warnings.
* Eliminate overlapping `app/assets` load pathJeremy Daer2015-09-291-2/+6
| | | | | | | | | | * 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.
* Use master version of Turbolinks gemAndrew White2015-09-211-1/+1
| | | | | 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`.
* Do not use conditionals at GemfileRafael Mendonça França2015-09-141-7/+2
| | | | 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-1/+7
| | | | having correct pre-compiled so
* Use released mysql2Rafael Mendonça França2015-09-081-1/+1
|
* Support mysql2 0.4.0, first release with prepared statements supportJeremy Daer2015-09-071-1/+1
| | | | Known failure on Ruby 2.3/trunk: brianmario/mysql2#671
* Add master branch to github gems to be able to use local clonesCarlos Antonio da Silva2015-09-011-4/+4
|
* point at rack masterAaron Patterson2015-08-201-0/+1
|
* Migrate to Sprockets 4.Andrei Istratii2015-08-191-1/+3
|
* implement `provider_job_id` for `queue_classic`.Yves Senn2015-08-131-1/+1
| | | | | | 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.
* Add gemfile entry for GlobalID until a new release is cut.Kasper Timm Hansen2015-07-051-0/+3
|
* Unlock sneakers adapter versionSemyon Pupkov2015-04-281-1/+1
|
* Use latest sprockets-rails on internal devArthur Neves2015-04-261-0/+1
|
* Uncomment byebug in framework GemfileGodfrey Chan2015-04-241-1/+1
| | | | | | | | | | | | | | | History: 1. `debugger` was there until d2ed433b where it was commented out, and I couldn't figure out why 2. Since then we inherited that when switching to `byebug` in 93559da4 Reasons: 1. It's nice to have a debugger when working on framework bugs 2. It's an uncommented dependency in app Gemfiles since Rails 4.2 (see fbe38c9e)
* Gemfile: temporay pin "bcrypt" version and run "bundle update bcrypt" on LinuxToshi MARUYAMA2015-04-091-1/+1
| | | | | | | Related: #19617, #19187, #19533, #19689, #19675. This is POC (Proof Of Concept) which bundler does not remove mingw lines. https://github.com/rails/rails/pull/19617#issuecomment-90293795
* redcarpet 3.2.2 has an XSS vulnerabilityAkira Matsuda2015-04-091-1/+1
| | | | see: http://www.openwall.com/lists/oss-security/2015/04/07/11
* Remove old mri platform entries from our GemfileCarlos Antonio da Silva2015-04-011-9/+2
| | | | | | | | | | Since we now only support Ruby 2.2+, we can safely remove the old mri entries from the Gemfile. This also allows us not to lock to a specific bundler version, since :mri_22 was defined only on 1.7.11. Closes #19611.
* Test using sprockets 3Rafael Mendonça França2015-03-291-0/+2
|
* method_source needs to be a hard dependency on railtiesArthur Neves2015-03-191-1/+0
|
* Add method_source to gemfileArthur Neves2015-03-181-0/+1
|
* Use the released gemRafael Mendonça França2015-03-101-2/+0
|
* Let strip_tags leave HTML escaping to Rails.Kasper Timm Hansen2015-03-101-0/+2
| | | | Prevents double escaping errors, such as "&" becoming "&".
* [ci skip] Fix `AS` and `AR` to full nameyui-knk2015-03-071-2/+2
|
* Fixed ActiveJob integration testsCristian Bica2015-03-051-1/+1
|
* Test against the mail gem's edgeRobin Dupret2015-03-021-0/+1
| | | | | | | | | | The edge version ships with a patch that uses composition over inheritance for the Mail::PartsList object (see mikel/mail#782). Let's test Action Mailer against it to prevent eventual regressions and experience it. Moreover, this branch makes the Action Mailer suite green against Rubinius.
* Format the time string according to the precision of the time columnRyuta Kamizono2015-02-201-1/+1
| | | | It is also necessary to format a time column like a datetime column.
* Remove most PG specific type subclassesSean Griffin2015-02-111-1/+1
| | | | | | | | | The latest version of the PG gem can actually convert the primitives for us in C code, which gives a pretty substantial speed up. A few cases were only there to add the `infinity` method, which I just put on the range type (which is the only place it was used). Floats also needed to parse `Infinity` and `NaN`, but it felt reasonable enough to put that on the generic form.
* Update queue_classic gem to use latestAlex Grover2015-01-311-1/+1
| | | | | | Remove '<3.0.0' requirement for queue_classic gem. This fixes the issue that the gem was attempting to parse the queue name as a URI, causing all of the tests to fail.
* fix kindlerb version [ci skip]Xavier Noria2015-01-311-1/+1
| | | | | This means we know generation works with this version, it does not mean it does not work with the last releases (should be tested).
* Include stackprof on ruby 2.2 as well as 2.1Sean Griffin2015-01-181-1/+1
|
* Remove debugger supportRafael Mendonça França2015-01-041-2/+2
| | | | | bebugger doesn't work with Ruby 2.2 so we don't need to support it anymore
* Update Redcarpet to version 3.2.2Robin Dupret2015-01-031-1/+1
|
* Add branch to gems pointing to github so that we can use local checkoutsCarlos Antonio da Silva2015-01-021-2/+2
|
* Use arel masterSean Griffin2014-11-291-0/+1
|
* Use jquery-rails master to resolve dependenciesRafael Mendonça França2014-11-281-2/+2
| | | | delayed_job_active_record doesn't allow Rails 5 yet
* Revert "Test against rack master"Santiago Pastorino2014-11-271-2/+0
| | | | This reverts commit 2a4e14db981e38611667d407a975600ee720ada7.
* Test against rack masterRafael Mendonça França2014-11-261-0/+2
|
* Use jquery-rails 4.0.0Rafael Mendonça França2014-11-251-1/+1
|
* Use released arelRafael Mendonça França2014-11-251-1/+0
|
* Use released rails-dom-testingRafael Mendonça França2014-11-251-1/+0
|
* Use GitHub, not my local fork :sweat_smile:Rafael Mendonça França2014-11-171-1/+1
|
* document_root_element need to be publicRafael Mendonça França2014-11-171-0/+1
|
* Add StackProf to the test group for 2.1Sean Griffin2014-11-171-0/+4
| | | | Makes life easier for people profiling on master.
* exec_prepared is GVL friendly, so lets use it.Aaron Patterson2014-11-131-1/+1
| | | | | also increase the version of pg required so that people will get the GVL friendly version
* Correctly cast calculation results on PGSean Griffin2014-11-011-1/+1
| | | | | MySQL reports the column name as `"MAX(developer_id)"`. PG will report it as `"max"`