Skip to content

Commit fc03240

Browse files
committed
[spec] upgrade sample bundler project to use rake 10.5.0
... some issues getting `bundle install --deployment` on 9.0.5 as well as 9.1.0
1 parent b2dd931 commit fc03240

File tree

256 files changed

+26493
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+26493
-4
lines changed

spec/sample_bundler/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
source "https://rubygems.org"
22

3-
gem 'rake'
3+
gem 'rake', '10.5.0'

spec/sample_bundler/Gemfile.lock

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
rake (10.4.2)
4+
rake (10.5.0)
55

66
PLATFORMS
77
java
88

99
DEPENDENCIES
10-
rake
10+
rake (= 10.5.0)
11+
12+
BUNDLED WITH
13+
1.11.2
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require 'autotest/restart'
2+
3+
Autotest.add_hook :initialize do |at|
4+
at.testlib = ''
5+
at.add_exception '.git'
6+
end
7+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
StringLiterals:
2+
Enabled: false
3+
4+
MultilineBlocks:
5+
Enabled: false
6+
7+
SingleLineBlocks:
8+
Enabled: false
9+
10+
NewLambdaLiteral:
11+
Enabled: false
12+
13+
SpaceAroundEqualsInParameterDefault:
14+
Enabled: false
15+
16+
HashSyntax:
17+
Enabled: false
18+
19+
LineLength:
20+
Enabled: true
21+
Max: 90
22+
23+
WhileUntilModifier:
24+
Enabled: false
25+
26+
IfUnlessModifier:
27+
Enabled: false
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(add-to-list
2+
'toggle-mapping-styles
3+
'(rake . (
4+
("test/test_rake_\\1.rb" . "lib/rake/\\1.rb")
5+
) ))
6+
7+
(buffer-toggle-style 'rake)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
= Source Repository
2+
3+
Rake is currently hosted at github. The github web page is
4+
http://github.com/ruby/rake . The public git clone URL is
5+
6+
git://github.com/ruby/rake.git
7+
8+
= Running the Rake Test Suite
9+
10+
If you wish to run the unit and functional tests that come with Rake:
11+
12+
* +cd+ into the top project directory of rake.
13+
* Install the +hoe+ gem dependency:
14+
15+
gem install hoe # Unless the hoe gem is already installed
16+
17+
* Type one of the following:
18+
19+
rake newb # If you have never run rake's tests
20+
rake # If you have run rake's tests
21+
22+
= Issues and Bug Reports
23+
24+
Feel free to submit commits or feature requests. If you send a patch,
25+
remember to update the corresponding unit tests. In fact, I prefer
26+
new feature to be submitted in the form of new unit tests.
27+
28+
For other information, feel free to ask on the ruby-talk mailing list.
29+
30+
If you have found a bug in rake please try with the latest version of rake
31+
before filing an issue. Also check History.rdoc for bug fixes that may have
32+
addressed your issue.
33+
34+
When submitting pull requests please check the rake Travis-CI page for test
35+
failures:
36+
37+
https://travis-ci.org/ruby/rake
38+

0 commit comments

Comments
 (0)