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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
3601ebda
Commit
3601ebda
authored
May 20, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update spring, re-run binstubs
parent
71b1a2c7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
14 deletions
+9
-14
Gemfile.lock
Gemfile.lock
+1
-1
bin/rails
bin/rails
+2
-3
bin/rake
bin/rake
+2
-3
bin/spring
bin/spring
+4
-7
No files found.
Gemfile.lock
View file @
3601ebda
...
...
@@ -589,7 +589,7 @@ GEM
capybara (>= 2.0.0)
railties (>= 3)
spinach (>= 0.4)
spring (1.3.
3
)
spring (1.3.
6
)
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
spring-commands-spinach (1.0.0)
...
...
bin/rails
View file @
3601ebda
...
...
@@ -3,6 +3,5 @@ begin
load
File
.
expand_path
(
"../spring"
,
__FILE__
)
rescue
LoadError
end
APP_PATH
=
File
.
expand_path
(
'../../config/application'
,
__FILE__
)
require_relative
'../config/boot'
require
'rails/commands'
require
'bundler/setup'
load
Gem
.
bin_path
(
'rails'
,
'rails'
)
bin/rake
View file @
3601ebda
...
...
@@ -3,6 +3,5 @@ begin
load
File
.
expand_path
(
"../spring"
,
__FILE__
)
rescue
LoadError
end
require_relative
'../config/boot'
require
'rake'
Rake
.
application
.
run
require
'bundler/setup'
load
Gem
.
bin_path
(
'rake'
,
'rake'
)
bin/spring
View file @
3601ebda
#!/usr/bin/env ruby
# This file loads spring without using Bundler, in order to be fast
# It gets overwritten when you run the `spring binstub` command
# This file loads spring without using Bundler, in order to be fast
.
# It gets overwritten when you run the `spring binstub` command
.
unless
defined?
(
Spring
)
require
"rubygems"
require
"bundler"
if
match
=
Bundler
.
default_lockfile
.
read
.
match
(
/^GEM$.*?^ spring \((.*?)\)$.*?^$/m
)
ENV
[
"GEM_PATH"
]
=
([
Bundler
.
bundle_path
.
to_s
]
+
Gem
.
path
).
join
(
File
::
PATH_SEPARATOR
)
ENV
[
"GEM_HOME"
]
=
""
Gem
.
paths
=
ENV
if
match
=
Bundler
.
default_lockfile
.
read
.
match
(
/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m
)
Gem
.
paths
=
{
"GEM_PATH"
=>
[
Bundler
.
bundle_path
.
to_s
,
*
Gem
.
path
].
uniq
}
gem
"spring"
,
match
[
1
]
require
"spring/binstub"
end
...
...
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