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
Jérome Perrin
gitlab-ce
Commits
5a7e3500
Commit
5a7e3500
authored
Dec 20, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:gitlabhq/gitlabhq
parents
5aeb8053
8c1be08d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
13 deletions
+33
-13
Gemfile.lock
Gemfile.lock
+1
-1
config/routes.rb
config/routes.rb
+1
-0
db/fixtures/development/05_users.rb
db/fixtures/development/05_users.rb
+7
-8
docker/Dockerfile
docker/Dockerfile
+4
-4
spec/routing/project_routing_spec.rb
spec/routing/project_routing_spec.rb
+20
-0
No files found.
Gemfile.lock
View file @
5a7e3500
...
@@ -158,7 +158,7 @@ GEM
...
@@ -158,7 +158,7 @@ GEM
dotenv (>= 0.7)
dotenv (>= 0.7)
thor (>= 0.13.6)
thor (>= 0.13.6)
formatador (0.2.4)
formatador (0.2.4)
gemnasium-gitlab-service (0.2.
2
)
gemnasium-gitlab-service (0.2.
3
)
rugged (~> 0.19)
rugged (~> 0.19)
gherkin-ruby (0.3.1)
gherkin-ruby (0.3.1)
racc
racc
...
...
config/routes.rb
View file @
5a7e3500
...
@@ -197,6 +197,7 @@ Gitlab::Application.routes.draw do
...
@@ -197,6 +197,7 @@ Gitlab::Application.routes.draw do
resources
:raw
,
only:
[
:show
],
constraints:
{
id:
/.+/
}
resources
:raw
,
only:
[
:show
],
constraints:
{
id:
/.+/
}
resources
:tree
,
only:
[
:show
],
constraints:
{
id:
/.+/
,
format:
/(html|js)/
}
resources
:tree
,
only:
[
:show
],
constraints:
{
id:
/.+/
,
format:
/(html|js)/
}
resources
:edit_tree
,
only:
[
:show
,
:update
],
constraints:
{
id:
/.+/
},
path:
'edit'
do
resources
:edit_tree
,
only:
[
:show
,
:update
],
constraints:
{
id:
/.+/
},
path:
'edit'
do
# Cannot be GET to differentiate from GET paths that end in preview.
post
:preview
,
on: :member
post
:preview
,
on: :member
end
end
resources
:new_tree
,
only:
[
:show
,
:update
],
constraints:
{
id:
/.+/
},
path:
'new'
resources
:new_tree
,
only:
[
:show
,
:update
],
constraints:
{
id:
/.+/
},
path:
'new'
...
...
db/fixtures/development/05_users.rb
View file @
5a7e3500
...
@@ -16,14 +16,13 @@ Gitlab::Seeder.quiet do
...
@@ -16,14 +16,13 @@ Gitlab::Seeder.quiet do
(
1
..
5
).
each
do
|
i
|
(
1
..
5
).
each
do
|
i
|
begin
begin
User
.
seed
(
:id
,
[
User
.
seed
do
|
s
|
id:
i
+
10
,
s
.
username
=
"user
#{
i
}
"
username:
"user
#{
i
}
"
,
s
.
name
=
"User
#{
i
}
"
name:
"User
#{
i
}
"
,
s
.
email
=
"user
#{
i
}
@example.com"
email:
"user
#{
i
}
@example.com"
,
s
.
confirmed_at
=
DateTime
.
now
confirmed_at:
DateTime
.
now
,
s
.
password
=
'12345678'
password:
'12345678'
end
])
print
'.'
print
'.'
rescue
ActiveRecord
::
RecordNotSaved
rescue
ActiveRecord
::
RecordNotSaved
print
'F'
print
'F'
...
...
docker/Dockerfile
View file @
5a7e3500
...
@@ -2,16 +2,16 @@ FROM ubuntu:14.04
...
@@ -2,16 +2,16 @@ FROM ubuntu:14.04
# Install required packages
# Install required packages
RUN
apt-get update
-q
\
RUN
apt-get update
-q
\
&&
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-qy
\
&&
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-qy
--no-install-recommends
\
ca-certificates
\
openssh-server
\
openssh-server
\
wget
\
wget
&&
apt-get clean
# Download & Install GitLab
# Download & Install GitLab
# If the Omnibus package version below is outdated please contribute a merge request to update it.
# If the Omnibus package version below is outdated please contribute a merge request to update it.
# If you run GitLab Enterprise Edition point it to a location where you have downloaded it.
# If you run GitLab Enterprise Edition point it to a location where you have downloaded it.
RUN
TMP_FILE
=
$(
mktemp
)
;
\
RUN
TMP_FILE
=
$(
mktemp
)
;
\
wget
-q
-O
$TMP_FILE
https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.5.
2
-omnibus.5.2.1.ci-1_amd64.deb
\
wget
-q
-O
$TMP_FILE
https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.5.
3
-omnibus.5.2.1.ci-1_amd64.deb
\
&&
dpkg
-i
$TMP_FILE
\
&&
dpkg
-i
$TMP_FILE
\
&&
rm
-f
$TMP_FILE
&&
rm
-f
$TMP_FILE
...
...
spec/routing/project_routing_spec.rb
View file @
5a7e3500
...
@@ -430,6 +430,26 @@ describe Projects::TreeController, "routing" do
...
@@ -430,6 +430,26 @@ describe Projects::TreeController, "routing" do
end
end
end
end
describe
Projects
::
EditTreeController
,
'routing'
do
it
'to #show'
do
get
(
'/gitlab/gitlabhq/edit/master/app/models/project.rb'
).
should
(
route_to
(
'projects/edit_tree#show'
,
project_id:
'gitlab/gitlabhq'
,
id:
'master/app/models/project.rb'
))
get
(
'/gitlab/gitlabhq/edit/master/app/models/project.rb/preview'
).
should
(
route_to
(
'projects/edit_tree#show'
,
project_id:
'gitlab/gitlabhq'
,
id:
'master/app/models/project.rb/preview'
))
end
it
'to #preview'
do
post
(
'/gitlab/gitlabhq/edit/master/app/models/project.rb/preview'
).
should
(
route_to
(
'projects/edit_tree#preview'
,
project_id:
'gitlab/gitlabhq'
,
id:
'master/app/models/project.rb'
))
end
end
# project_compare_index GET /:project_id/compare(.:format) compare#index {id: /[^\/]+/, project_id: /[^\/]+/}
# project_compare_index GET /:project_id/compare(.:format) compare#index {id: /[^\/]+/, project_id: /[^\/]+/}
# POST /:project_id/compare(.:format) compare#create {id: /[^\/]+/, project_id: /[^\/]+/}
# POST /:project_id/compare(.:format) compare#create {id: /[^\/]+/, project_id: /[^\/]+/}
# project_compare /:project_id/compare/:from...:to(.:format) compare#show {from: /.+/, to: /.+/, id: /[^\/]+/, project_id: /[^\/]+/}
# project_compare /:project_id/compare/:from...:to(.:format) compare#show {from: /.+/, to: /.+/, id: /[^\/]+/, project_id: /[^\/]+/}
...
...
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