summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Ruby 2.0 (trunk ruby) is not Ruby 1.9"v1.2.0Andre Arko2012-08-301-2/+2
| | | | | | As discussed in #1539 and #2056, Bundler uses platforms to distinguish Ruby ABI versions. That means the known (and ATM supported) use cases for the ruby_19 platform include Ruby 2.0. This reverts commit dcfb640c2c78671a90ab10ce4c8d98a157ad975c.
* fix whitespace testTerence Lee2012-08-301-1/+1
|
* Version 1.2.0Terence Lee2012-08-301-1/+1
|
* update changelog for 1.2.0Terence Lee2012-08-301-0/+10
|
* bundle platform man pagesTerence Lee2012-08-304-0/+47
|
* Fix #2075. Return to old namespace behavior.Terence Lee2012-08-242-2/+21
| | | | $1 gets overidden by gsub.
* raise the original error mesasge hereTerence Lee2012-08-142-3/+3
|
* fix test case namesTerence Lee2012-08-141-2/+2
|
* namespace gem require logic handles case where regex failsTerence Lee2012-08-142-2/+25
|
* Version 1.2.0.rc.2 and changelogv1.2.0.rc.2Terence Lee2012-08-082-1/+7
|
* `clean` should not remove gems in the lockfileTerence Lee2012-08-083-28/+9
|
* don't remove git sources with `clean`Terence Lee2012-08-082-1/+27
|
* Merge pull request #1931 from coding46/patch-1Ryan Bigg2012-08-061-1/+1
|\ | | | | Simple Typo
| * Typocoding462012-05-201-1/+1
| |
* | Fix 'LICENSCE' typo in CHANGELOGRyan Bigg2012-07-181-1/+1
| |
* | Version 1.2.0.rc with changelogv1.2.0.rcTerence Lee2012-07-172-1/+21
| |
* | don't need these tests in 1.2Terence Lee2012-07-171-21/+0
| |
* | Merge branch '1-1-stable'Terence Lee2012-07-172-0/+27
|\ \ | | | | | | | | | | | | | | | | | | Conflicts: CHANGELOG.md lib/bundler/dsl.rb lib/bundler/version.rb
| * | Version 1.1.5 with changelogv1.1.51-1-stableTerence Lee2012-07-172-1/+7
| | |
| * | special case `ruby` directiveTerence Lee2012-07-172-0/+27
| | | | | | | | | | | | | | | | | | This is light of the upcoming 1.2.0 release which adds this feature. This way people still using 1.1.x can run 1.2.0 Gemfiles that employ this feature and get a notification about upgrading.
| * | Fix typos in error messagesMani Tadayon2012-06-052-2/+2
| | |
* | | rename --no-lock to --dry-runTerence Lee2012-07-172-4/+4
| | |
* | | Make locking the Gemfile optional on $ bundle checkSven Fuchs2012-07-172-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently `bundle check` locks the Gemfile. According to @indirect this behaviour is intentional (see https://twitter.com/#!/indirect/status/186493694013210624). I am working on a CLI monitoring tool that makes it easier to work with cross-repository changes on projects that are split up into several repositories. This tool is supposed to display status information such as out-of-date bundler Gemfiles etc. To do so it watches the filesystem and queries for information on demand. Using `bundle check` to do so currently leads to highly confusing side-effects because suddenly the git working directory might be dirty - having changed the Gemfile.lock - because `bundle check` has been run in the background. This patch adds a boolean method option `--[no-]lock` to `bundle check` that defaults to `true` in order to not change the current behaviour but make it possible for users to turn it off. Sidenote: apparently the same behaviour also applies to `bundle show`. Am I the only one who finds this highly confusing?
* | | don't display warning if Bundler.settings[:cache_all] is setTerence Lee2012-07-172-3/+17
| | |
* | | add warning message for `bundle pack --all` if not used with git reposTerence Lee2012-07-171-0/+13
| | |
* | | remove unnecessary '|| nil'Terence Lee2012-07-171-1/+1
| | |
* | | Prune git and path directories inside vendor/cache, closes #1988José Valim2012-07-174-24/+77
| | | | | | | | | | | | | | | | | | | | | From this commit on, we add a .bundlecache file inside each git/path directory in vendor/cache so we know it came from bundler. This allow us to delete those specific directories without messing with user's specific ones.
* | | Don't actually care if git repo is inside the repository, always cache it, ↵José Valim2012-07-172-1/+26
| | | | | | | | | | | | closes #1989
* | | loosen ruby directive for enginesTerence Lee2012-07-122-2/+168
| | | | | | | | | | | | | | | | | | | | | | | | | | | allow other engines to qualify when the engine is omitted. So, in the Gemfile: ruby "1.9.3" will work with JRuby and RBX as long as the RUBY_VERSION matches
* | | Check for nil PATHAndre Arko2012-07-051-1/+1
| | | | | | | | | | | | fixes #2006
* | | Merge pull request #1998 from postmodern/patch-1Ryan Bigg2012-06-211-1/+1
|\ \ \ | | | | | | | | Fixed typo. $/ and NOT $\
| * | | Oops. That should be $/, which is "\n" on UNIX systems and "\r\n" on Windows.Postmodern2012-06-201-1/+1
| | | |
* | | | Merge pull request #2001 from postmodern/txtRyan Bigg2012-06-213-1/+2
|\ \ \ \ | |/ / / |/| | | LICENSE.txt
| * | | Check that LICENSE.txt was created.Postmodern2012-06-211-0/+1
| | | |
| * | | Add the .txt extension to the LICENSE file.Postmodern2012-06-212-1/+1
|/ / /
* | | Update vendored thor to version 0.15.2Erik Michaels-Ober2012-06-1524-241/+592
| | |
* | | kill the stray spaceAndré Arko2012-06-141-1/+1
| | |
* | | minor grammar tweakAndré Arko2012-06-141-3/+3
| | |
* | | Ensure branch checks are enforced on local overrides, closes #1837José Valim2012-06-141-1/+3
| | |
* | | specs: check :branch for local overrides on runtimeDavid Lee2012-06-142-5/+92
| | | | | | | | | | | | Signed-off-by: José Valim <jose.valim@plataformatec.com.br>
* | | Add config disable_local_branch_check, closes #1985José Valim2012-06-142-2/+23
| | |
* | | Merge remote-tracking branch 'rkh/optional-branch'André Arko2012-06-122-2/+26
|\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: lib/bundler/source.rb spec/install/git_spec.rb
| * | | do not explode if branch is not given for local git reposKonstantin Haase2012-05-212-9/+3
| | | |
* | | | Merge pull request #1980 from phil-monroe/masterAndré Arko2012-06-122-32/+2
|\ \ \ \ | | | | | | | | | | Remove all requirements from local override
| * | | | remove all requirements for local override.Phil Monroe2012-06-122-8/+2
| | | | |
| * | | | Allowing git local override to to accept :branch, :tag or :refPhil Monroe2012-06-122-28/+4
|/ / / /
* | | | Describe how to check for problematic gemsAndré Arko2012-06-091-3/+3
| | | |
* | | | handle syntax errors in Ruby gemspecsAndré Arko2012-06-091-4/+4
| | | | | | | | | | | | | | | | fixes #1974
* | | | require 'newgem/version'André Arko2012-06-091-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | because require hashes based on the string, not the expanded path of the file, it's important that we require the version file the same way that it will be required elsewhere to avoid constant warnings.
* | | | Rakefiles aren't really supposed to be executableAndré Arko2012-06-091-1/+0
| | | |