Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
48b59620
Commit
48b59620
authored
Nov 07, 2018
by
Jan Provaznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make rails5 defailt in bin/* scripts
parent
cb550656
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
bin/rails
bin/rails
+1
-1
bin/rake
bin/rake
+1
-1
bin/rspec
bin/rspec
+1
-1
No files found.
bin/rails
View file @
48b59620
#!/usr/bin/env ruby
# Remove this block when upgraded to rails 5.0.
unless
%w[1 tru
e]
.
include?
(
ENV
[
"RAILS5"
])
if
%w[0 fals
e]
.
include?
(
ENV
[
"RAILS5"
])
begin
load
File
.
expand_path
(
'../spring'
,
__FILE__
)
rescue
LoadError
=>
e
...
...
bin/rake
View file @
48b59620
#!/usr/bin/env ruby
# Remove this block when upgraded to rails 5.0.
unless
%w[1 tru
e]
.
include?
(
ENV
[
"RAILS5"
])
if
%w[0 fals
e]
.
include?
(
ENV
[
"RAILS5"
])
begin
load
File
.
expand_path
(
'../spring'
,
__FILE__
)
rescue
LoadError
=>
e
...
...
bin/rspec
View file @
48b59620
...
...
@@ -2,7 +2,7 @@
# Remove these two lines below when upgraded to rails 5.0.
# Allow run `rspec` command as `RAILS5=1 rspec ...` instead of `BUNDLE_GEMFILE=Gemfile.rails5 rspec ...`
gemfile
=
%w[
1 true]
.
include?
(
ENV
[
"RAILS5"
])
?
"Gemfile.rails5
"
:
"Gemfile"
gemfile
=
%w[
0 false]
.
include?
(
ENV
[
"RAILS5"
])
?
"Gemfile.rails4
"
:
"Gemfile"
ENV
[
'BUNDLE_GEMFILE'
]
||=
File
.
expand_path
(
"../
#{
gemfile
}
"
,
__dir__
)
begin
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment