summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add documentation for bundle viz and update index.txtrgb-manpage-additionsRichard Bowen2015-06-192-0/+30
|
* Add docmuentation for bundle initRichard Bowen2015-06-192-2/+27
|
* Merge pull request #3749 from asymmetric/infinite-loop-msgAndré Arko2015-06-192-2/+2
|\ | | | | Improve error message for circular dependency case
| * Improve error message for circular dependency caseLorenzo Manacorda2015-06-172-2/+2
| | | | | | | | Closes #3738.
* | Merge pull request #3723 from mattbrictson/patch-1André Arko2015-06-191-4/+4
|\ \ | | | | | | | | | | | | Clarify the purpose of --deployment [ci skip]
| * | Clarify the purpose of --deploymentMatt Brictson2015-06-051-4/+4
| | | | | | | | | | | | | | | The man page originally explained that `--deployment` is not appropriate for the `test` environment, which is misleading. In a CI environment, you *do* want to use `--deployment`, despite the fact that CI will likely be using `RAILS_ENV=test` when running tests. This PR clarifies that `--deployment` is for production and CI, and avoids explicitly referencing Rails environment names.
* | | Merge pull request #3766 from strand/patch-1André Arko2015-06-191-1/+3
|\ \ \ | | | | | | | | | | | | | | | | Integrate Code of Covenant 1.1.0 changes [ci skip]
| * | | Integrate Code of Covenant 1.1.0 changesStrand McCutchen2015-06-191-1/+3
|/ / / | | | | | | See also: http://contributor-covenant.org/version/1/1/0/code_of_conduct.md
* | | Merge pull request #3756 from postmodern/patch-2André Arko2015-06-181-1/+1
|\ \ \ | | | | | | | | Use `#!/usr/bin/env bash`
| * | | Use `#!/usr/bin/env bash`Postmodern2015-06-171-1/+1
| | |/ | |/| | | | bash may not always be located at `/bin/bash`.
* | | Merge pull request #3758 from karlo57/fix-typoSamuel E. Giddins2015-06-181-1/+1
|\ \ \ | |/ / |/| | Fix typo
| * | fix typoKarlo Soriano2015-06-181-1/+1
|/ /
* | Merge tag 'v1.10.4'Samuel E. Giddins2015-06-1623-46/+187
|\ \ | | | | | | | | | Version 1.10.4
| * | Version 1.10.4 with changelogv1.10.4Andre Arko2015-06-162-1/+12
| | |
| * | [Travis] Test against 2.4.8 nowSamuel E. Giddins2015-06-102-3/+3
| | |
| * | Merge pull request #3722 from bundler/implicit_lock_preservationAndré Arko2015-06-087-7/+131
| |\ \ | | | | | | | | Implicit lock preservation
| | * | specs for bundler version warningsimplicit_lock_preservationAndre Arko2015-06-082-2/+6
| | | |
| | * | use existing constants to match BUNDLED WITHAndre Arko2015-06-081-1/+2
| | | |
| | * | Fix bundler/inline.Tim Moore2015-06-081-1/+1
| | | |
| | * | avoid altering BUNDLED WITH during implicit locksAndre Arko2015-06-084-6/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When either `bundle check` is run, or any application requires the `bundler/setup` file, Bundler will automatically check whether it is possible to lock the Bundle. During the lock process, Bundler updates the lock if the implicit locking changes the lock file. Starting with the 1.10 release, Bundler includes a lockfile section named BUNDLED WITH that includes the version of Bundler that generated the lockfile. In order to minimize git churn, and guarantee that the lockfile will only be changed when the user runs an explicit Bundler command, Bundler will now only add or update the BUNDLED WITH section during commands where the user asks for changes to the lock. This includes, but is not limited to, `install`, `update`, `lock`, and `package`. Running the `check` command or loading an application that uses Bundler will still now add or update the BUNDLED WITH section if, and only if, the lockfile has also changed for a different reason (such as a gem being updated). Simply using an application, by running `bundle exec` commands or by running `bin/rails` and the like, will not change the lockfile. As a result, the intended workflow with the BUNDLED WITH section is now slightly different than it was before: 1. When running `bundle install`, Bundler will update the version in the lockfile if newer than the version present. 2. Then, check in the lockfile change, exactly as you would after running install to change any other gem version. 3. Older versions of Bundler will not change the number in the lock, but will warn the user that they are out of date. refs bundler/bundler-features#80 refs #3697
| | * | failing specs for BUNDLED WITH preservationAndre Arko2015-06-082-0/+109
| |/ / | | | | | | | | | | | | | | | we want to avoid changing the lock just to add BUNDLED WITH unless the user is explicitly running a Bundler command; implicit locking should not alter the lockfile.
| * | Revert "Bundler.ui is now lazy-created"Andre Arko2015-06-081-0/+7
| | | | | | | | | | | | | | | | | | | | | The lazy-created UI is silent, and we need to be able to print for things like ambiguous command error messages. This reverts commit 849c649632b71111a06e71c0170ba966aca60d04.
| * | remove unused variableAndre Arko2015-06-081-2/+0
| | |
| * | hoist post_install_messageAndre Arko2015-06-081-0/+1
| | |
| * | Display "with native extensions" log output correctlyIvan Tse2015-06-083-2/+13
| | |
| * | no more native ext message via RG outputAndre Arko2015-06-081-5/+1
| | |
| * | fix post-install messages from git and path gemsAndre Arko2015-06-083-8/+9
| | |
| * | post-install for consistencyAndre Arko2015-06-081-1/+1
| | |
| * | put related code togetherAndre Arko2015-06-071-1/+4
| | |
| * | print installing message _before_ installingAndre Arko2015-06-072-13/+9
| | | | | | | | | fixes failing spec from 2a73e2d
| * | Bundler.ui is now lazy-createdAndre Arko2015-06-071-7/+0
| | |
| * | failing spec for native extensions outputAndre Arko2015-06-071-0/+1
| | |
| * | rename c_ext_spec → native_extension_specAndre Arko2015-06-071-1/+1
| | | | | | | | | I couldn’t find it :P
| * | Fix the failing spec.Tim Moore2015-06-051-1/+1
| | | | | | | | | | | | Since 9179412, `bundle i` is explicitly aliased and no longer ambiguous.
| * | it’s fine to use a known-old versionAndre Arko2015-06-051-3/+0
| | |
| * | explicitly alias i, c, and e commandsAndre Arko2015-06-051-1/+3
| | |
| * | move the base install/update specs into commandsAndre Arko2015-06-052-0/+0
| | |
* | | Disable fast_finish because @joshk saysAndre Arko2015-06-151-1/+0
| | | | | | | | | | | | | | | | | | we keep getting piles of notifications even when only a couple of jobs fail, and the current theory is that it's a bug in fast_finish. let's find out.
* | | :space_invader:Andre Arko2015-06-151-1/+1
| | |
* | | Link to CONTRIBUTING from DEVELOPMENTAndré Arko2015-06-151-3/+2
| | | | | | | | | Some potential contributors go straight to DEVELOPMENT, and we want them to be able to use the list of useful contributions from CONTRIBUTING as well.
* | | Merge pull request #3713 from repinel/improve-permission-msg-deploymentAndré Arko2015-06-095-6/+38
|\ \ \ | | | | | | | | Improves the message displayed when cannot create config
| * | | Improves the message displayed when cannot create configRoque Pinel2015-06-085-6/+38
| | | | | | | | | | | | | | | | Add the `PermissionError` for file permission issues
* | | | Merge pull request #3679 from akihiro17/check-commandAndré Arko2015-06-092-1/+17
|\ \ \ \ | | | | | | | | | | Run ``` bundle check ``` with ``` disable_shared_gems ``` set to '1'
| * | | | Run ``` bundle check ``` with ``` disable_shared_gems ``` set to '1' if ↵akihiro172015-05-302-1/+17
| | | | | | | | | | | | | | | | | | | | --path option is specified
* | | | | Merge pull request #3731 from skateman/release-remoteAndré Arko2015-06-092-7/+7
|\ \ \ \ \ | | | | | | | | | | | | Added optional remote argument for the rake release task
| * | | | | Added support for optional remote argument in the rake release taskDávid Halász2015-06-082-7/+7
| | |/ / / | |/| | | | | | | | | | | | | | | | | | Useful when working with multiple git remotes (origin/upstream/downstream). `rake release[remote]` will push tags into the specified remote instead of the default one.
* | | | | Merge pull request #3733 from waynn/patch-1Samuel E. Giddins2015-06-091-1/+1
|\ \ \ \ \ | |/ / / / |/| | | | missing period at end of README
| * | | | missing period at end of READMEWaynn Lue2015-06-091-1/+1
|/ / / /
* | | | Merge pull request #3711 from steverob/patch-1André Arko2015-06-071-0/+5
|\ \ \ \ | | | | | | | | | | Add man docs for bundle install --force option
| * | | | Add man docs for bundle install --force optionSteve Robinson2015-06-041-0/+5
| | | | |