-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stop hard-coding BUNDLE_GEMFILE when running wars #444
Open
davishmcclurg
wants to merge
2
commits into
jruby:master
Choose a base branch
from
davishmcclurg:env-vars
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source "https://rubygems.org" | ||
|
||
gem 'rake', '12.3.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
rake (12.3.1) | ||
|
||
PLATFORMS | ||
java | ||
|
||
DEPENDENCIES | ||
rake (= 12.3.1) | ||
|
||
BUNDLED WITH | ||
1.16.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
14 changes: 14 additions & 0 deletions
14
spec/sample_bundler/vendor/bundle/jruby/2.3.0/gems/rake-12.3.1/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*.bak | ||
*.rbc | ||
*.swp | ||
*~ | ||
.#* | ||
.DS_Store | ||
.idea | ||
.rbx | ||
/.rdoc | ||
/TAGS | ||
/coverage | ||
/html | ||
/pkg | ||
Gemfile.lock |
36 changes: 36 additions & 0 deletions
36
spec/sample_bundler/vendor/bundle/jruby/2.3.0/gems/rake-12.3.1/CONTRIBUTING.rdoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
= Source Repository | ||
|
||
Rake is currently hosted at github. The github web page is | ||
https://github.com/ruby/rake . The public git clone URL is | ||
|
||
git://github.com/ruby/rake.git | ||
|
||
= Running the Rake Test Suite | ||
|
||
If you wish to run the unit and functional tests that come with Rake: | ||
|
||
* +cd+ into the top project directory of rake. | ||
* Install gem dependency using bundler: | ||
|
||
bundle install # Install bundler, minitest and rdoc | ||
|
||
* Type one of the following: | ||
|
||
rake # If you have run rake's tests | ||
|
||
= Issues and Bug Reports | ||
|
||
Feel free to submit commits or feature requests. If you send a patch, | ||
remember to update the corresponding unit tests. In fact, I prefer | ||
new feature to be submitted in the form of new unit tests. | ||
|
||
For other information, feel free to ask on the ruby-talk mailing list. | ||
|
||
If you have found a bug in rake please try with the latest version of rake | ||
before filing an issue. Also check History.rdoc for bug fixes that may have | ||
addressed your issue. | ||
|
||
When submitting pull requests please check the rake Travis-CI page for test | ||
failures: | ||
|
||
https://travis-ci.org/ruby/rake |
3 changes: 3 additions & 0 deletions
3
spec/sample_bundler/vendor/bundle/jruby/2.3.0/gems/rake-12.3.1/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the main issue. Our project is using a custom gemfile (with
BUNDLE_GEMFILE
) and it's getting overridden here