summaryrefslogtreecommitdiff
path: root/lib/bundler/current_ruby.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add TruffleRuby to the list of engines in BundlerBenoit Daloze2018-09-091-1/+7
|
* [CurrentRuby] Add 2.6 as a known minorSamuel Giddins2017-12-261-0/+1
| | | | See https://github.com/ruby/ruby/commit/0af050993e9cc55e2f58d8f4677c1521bacf5bea
* [RuboCop] Enable Layout/EmptyLineAfterMagicComment copKoichi ITO2017-07-161-0/+1
|
* [RuboCop] Enable Style/PercentLiteralDelimitersKoichi ITO2017-05-281-4/+4
| | | | Run `rubocop -a --only Style/PercentLiteralDelimiters` and `rubocop --auto-gen-config`.
* [CurrentRuby] Ensure the local platform isnt ruby before checking os/cpuseg-windows-force-rubySamuel Giddins2017-01-211-3/+3
|
* Support :mri_25 platform and its variationsAkira Matsuda2016-12-261-0/+1
|
* Add a setting for forcing only the ruby platformSamuel Giddins2016-09-271-3/+3
|
* [CurrentRuby] Refactorseg-current-rubySamuel Giddins2016-02-021-168/+33
|
* Compatibility with frozen string literalsSamuel Giddins2016-01-311-0/+1
|
* Support :mri_23 platform and its variationsAkira Matsuda2015-07-221-1/+29
|
* [RuboCop] Enable Style/StringLiteralsSamuel E. Giddins2015-07-151-3/+3
|
* [RuboCop] Enable Style/EmptyLinesSamuel E. Giddins2015-07-151-1/+0
|
* Removes a warning in jrubyDavid Rodríguez2015-07-111-0/+8
| | | | | | | | | | | | | It seems that jruby's exec does not understand that option: ``` uri:classloader:/jruby/kernel/kernel.rb:28: warning: unsupported exec option: close_others ``` The warning was skipped for rubies under 2.0 (like latest released jruby) but the new jruby 9.0.0.0 is 2.0 compatible by default so the check needs to be refined.
* add `:ruby_22` platform optionAbdelkader Boudih2014-09-251-0/+28
|
* Mswin64 support.U.Nakamura2014-04-111-0/+32
|
* Merge pull request #2611 from mcfiredrill/jruby18and19André Arko2013-09-261-0/+8
|\ | | | | add jruby_18 and jruby_19 to platforms
| * add jruby_18 and jruby_19 to platformsTony Miller2013-08-241-0/+8
| |
* | adding platform support for ruby 2.1Brandon Black2013-09-241-1/+20
|/ | | | | * added new platform and ruby version helpers * updated man file and tests
* Add proper support for x64-mingw32 platform.Lars Kanis2013-08-101-1/+9
| | | | This fixes github issue #2356 .
* Load current_ruby from shared_helpers.rbHemant Kumar2013-07-251-0/+7
| | | | | | In case of commands run via bundle exec, we do not require all of bundler in that environment and we only require bundler/setup there. Which creates problems because Bundler is unable to find current_ruby therej
* Extract Current Ruby version/platform detection from dependency.rbHemant Kumar2013-07-181-0/+81
That can be reused across several places in bundler and hence extracted that code which is responsible for properly detecting current ruby version.