imbriaco-integrity 0.1.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. data/.gitignore +12 -0
  2. data/CHANGES +36 -0
  3. data/README.markdown +79 -0
  4. data/Rakefile +79 -0
  5. data/bin/integrity +4 -0
  6. data/config/config.sample.ru +21 -0
  7. data/config/config.sample.yml +41 -0
  8. data/config/heroku/.gems +1 -0
  9. data/config/heroku/Rakefile +6 -0
  10. data/config/heroku/config.ru +7 -0
  11. data/config/heroku/integrity-config.rb +14 -0
  12. data/config/thin.sample.yml +13 -0
  13. data/integrity.gemspec +140 -0
  14. data/lib/integrity/app.rb +138 -0
  15. data/lib/integrity/author.rb +39 -0
  16. data/lib/integrity/build.rb +91 -0
  17. data/lib/integrity/commit.rb +63 -0
  18. data/lib/integrity/core_ext/object.rb +6 -0
  19. data/lib/integrity/helpers/authorization.rb +33 -0
  20. data/lib/integrity/helpers/breadcrumbs.rb +20 -0
  21. data/lib/integrity/helpers/forms.rb +29 -0
  22. data/lib/integrity/helpers/pretty_output.rb +45 -0
  23. data/lib/integrity/helpers/rendering.rb +25 -0
  24. data/lib/integrity/helpers/resources.rb +19 -0
  25. data/lib/integrity/helpers/urls.rb +59 -0
  26. data/lib/integrity/helpers.rb +16 -0
  27. data/lib/integrity/installer.rb +136 -0
  28. data/lib/integrity/migrations.rb +151 -0
  29. data/lib/integrity/notifier/base.rb +74 -0
  30. data/lib/integrity/notifier/test/fixtures.rb +108 -0
  31. data/lib/integrity/notifier/test/hpricot_matcher.rb +38 -0
  32. data/lib/integrity/notifier/test.rb +59 -0
  33. data/lib/integrity/notifier.rb +34 -0
  34. data/lib/integrity/project/deprecated.rb +17 -0
  35. data/lib/integrity/project/notifiers.rb +33 -0
  36. data/lib/integrity/project/push.rb +44 -0
  37. data/lib/integrity/project.rb +102 -0
  38. data/lib/integrity/project_builder.rb +56 -0
  39. data/lib/integrity/scm/git/uri.rb +57 -0
  40. data/lib/integrity/scm/git.rb +84 -0
  41. data/lib/integrity/scm.rb +19 -0
  42. data/lib/integrity.rb +101 -0
  43. data/public/buttons.css +82 -0
  44. data/public/reset.css +7 -0
  45. data/public/spinner.gif +0 -0
  46. data/test/acceptance/api_test.rb +97 -0
  47. data/test/acceptance/browse_project_builds_test.rb +65 -0
  48. data/test/acceptance/browse_project_test.rb +99 -0
  49. data/test/acceptance/build_notifications_test.rb +95 -0
  50. data/test/acceptance/create_project_test.rb +97 -0
  51. data/test/acceptance/delete_project_test.rb +53 -0
  52. data/test/acceptance/edit_project_test.rb +117 -0
  53. data/test/acceptance/error_page_test.rb +18 -0
  54. data/test/acceptance/installer_test.rb +79 -0
  55. data/test/acceptance/manual_build_project_test.rb +82 -0
  56. data/test/acceptance/not_found_page_test.rb +29 -0
  57. data/test/acceptance/project_syndication_test.rb +30 -0
  58. data/test/acceptance/stylesheet_test.rb +26 -0
  59. data/test/acceptance/unauthorized_page_test.rb +20 -0
  60. data/test/helpers/acceptance/email_notifier.rb +55 -0
  61. data/test/helpers/acceptance/git_helper.rb +99 -0
  62. data/test/helpers/acceptance/notifier_helper.rb +47 -0
  63. data/test/helpers/acceptance/textfile_notifier.rb +26 -0
  64. data/test/helpers/acceptance.rb +79 -0
  65. data/test/helpers/expectations/be_a.rb +23 -0
  66. data/test/helpers/expectations/change.rb +90 -0
  67. data/test/helpers/expectations/have.rb +105 -0
  68. data/test/helpers/expectations/predicates.rb +37 -0
  69. data/test/helpers/expectations.rb +4 -0
  70. data/test/helpers/fixtures.rb +87 -0
  71. data/test/helpers/initial_migration_fixture.sql +44 -0
  72. data/test/helpers.rb +87 -0
  73. data/test/unit/build_test.rb +86 -0
  74. data/test/unit/commit_test.rb +62 -0
  75. data/test/unit/helpers_test.rb +103 -0
  76. data/test/unit/integrity_test.rb +52 -0
  77. data/test/unit/migrations_test.rb +57 -0
  78. data/test/unit/notifier/base_test.rb +43 -0
  79. data/test/unit/notifier/test_test.rb +29 -0
  80. data/test/unit/notifier_test.rb +85 -0
  81. data/test/unit/project_builder_test.rb +118 -0
  82. data/test/unit/project_test.rb +371 -0
  83. data/test/unit/scm_test.rb +54 -0
  84. data/views/_commit_info.haml +24 -0
  85. data/views/build.haml +2 -0
  86. data/views/error.haml +37 -0
  87. data/views/home.haml +21 -0
  88. data/views/integrity.sass +400 -0
  89. data/views/layout.haml +29 -0
  90. data/views/new.haml +50 -0
  91. data/views/not_found.haml +31 -0
  92. data/views/notifier.haml +7 -0
  93. data/views/project.builder +21 -0
  94. data/views/project.haml +30 -0
  95. data/views/unauthorized.haml +38 -0
  96. metadata +327 -0
@@ -0,0 +1,400 @@
1
+ !default_fonts = "Helvetica Neue, Helvetica, Arial, sans-serif"
2
+ !nice_fonts = "Georgia, Times New Roman, serif"
3
+ !monospace_fonts = "Monaco, Deja Vu Sans Mono, Inconsolata, Consolas, monospace"
4
+
5
+ !page_bg = #e0e0e0
6
+ !content_bg = #eee
7
+ !header_bg = #fff
8
+ !text_color = #333
9
+ !light_color = #999
10
+ !title_color = #4e4e4e
11
+ !link_color = #ed1556
12
+ !link_bg = #fff
13
+ !rule_color = #c0c0c0
14
+ !watermark = #ccc
15
+ !quote_bg = #fff
16
+ !success_bg = #bbf8aa
17
+ !success_color = #337022
18
+ !failed_bg = #fba
19
+ !failed_color = #f10
20
+
21
+ html
22
+ :background-color = !page_bg
23
+
24
+ body
25
+ :font-size 100%
26
+ :font-family = !default_fonts
27
+ :color = !text_color
28
+
29
+ a
30
+ :color = !link_color
31
+ :text-decoration none
32
+ &:hover
33
+ :color = !link_bg
34
+ :background-color = !link_color
35
+
36
+ #header, #content, #footer
37
+ :width 40em
38
+ :margin 0 auto
39
+ :background = !content_bg
40
+ :padding 0 2em
41
+ :z-index 0
42
+ :position relative
43
+ :font-size 1em
44
+
45
+ #header
46
+ :background = !header_bg
47
+ h1
48
+ :font-weight bold
49
+ :font-size 1.5em
50
+ address.watermark
51
+ :position absolute
52
+ :font-weight bold
53
+ :right 3em
54
+ :top 0
55
+ :font-size .75em
56
+ :color = !watermark
57
+ a
58
+ :color = !watermark
59
+ :font-weight bold
60
+ :font-size 2em
61
+ &:hover
62
+ :background transparent
63
+ :color = !watermark - #222
64
+
65
+ #content
66
+ :padding-top 1em
67
+ :padding-bottom 2em
68
+
69
+ strong
70
+ :font-weight bold
71
+ em
72
+ :font-style italic
73
+
74
+ h1, h2, h3, h4, h5, h6
75
+ :color = !title_color
76
+ h1
77
+ :font-size 2em
78
+ :font-weight bold
79
+ :margin-bottom .75em
80
+ :padding .25em 0
81
+ :line-height 1.2
82
+ :border-bottom = 1px solid !rule_color
83
+ h2
84
+ :font-weight bold
85
+ :font-size 1.5em
86
+ :margin 1em 0 .2em
87
+ h3
88
+ :font-weight bold
89
+ :font-size 1.25em
90
+ :margin .25em 0
91
+ h4, h5, h6
92
+ :font-weight bold
93
+ :margin-top .5em
94
+
95
+ code, pre, textarea, input
96
+ :font-family = !monospace_fonts
97
+ pre
98
+ margin .5em :0
99
+ padding .5em
100
+
101
+ form
102
+ p
103
+ :margin-top 1em
104
+ :position relative
105
+ &.checkbox label
106
+ :margin-top 0 !important
107
+ input.text, textarea
108
+ :width 30em
109
+ :padding .2em .4em
110
+ :color = !title_color
111
+ input.text
112
+ :height 1.4em
113
+ label
114
+ :float left
115
+ :display block
116
+ :margin-top .5em
117
+ :width 8em
118
+ :margin-right .75em
119
+ .with_errors
120
+ label
121
+ :background red
122
+ :color white
123
+ :position relative
124
+ :top -.7em
125
+ &.required
126
+ label
127
+ :position static
128
+ :margin-right .25em
129
+ :padding 0 .2em
130
+ input, textarea
131
+ :border 2px solid #f22
132
+ :background #fee
133
+ :color = !text_color - #111
134
+ .required
135
+ label
136
+ :float none
137
+ :display block
138
+ :width auto
139
+ :position relative
140
+ :font-weight bold
141
+ :margin-top 1em
142
+ :text-indent -.65em
143
+ &:before
144
+ :content "* "
145
+ :color = !link_color
146
+ input.text
147
+ :width 25.6em
148
+ :font-size 24px
149
+ :font-weight bold
150
+ .normal
151
+ :margin-top 2em
152
+ h2.notifier label
153
+ :float none
154
+ :width auto
155
+ :margin-right 0
156
+ .warning
157
+ :font-size .5em
158
+ :font-weight normal
159
+ :color = !light_color
160
+ fieldset
161
+ :padding-bottom 1em
162
+ :margin-left 1.35em
163
+ :border-bottom = 1px solid !rule_color
164
+ :margin-bottom 1em
165
+ h3
166
+ :margin-top 1em
167
+ :margin-bottom 0
168
+ p.normal
169
+ :margin-top 1em
170
+ p label
171
+ :width 6.7em
172
+ p.submit
173
+ :margin-top 2em
174
+ &:after
175
+ :display block
176
+ :clear both
177
+ :float none
178
+ :content "."
179
+ :text-indent -9999em
180
+ :text-align left
181
+ &.destroy, &.manual-build
182
+ button
183
+ :float none
184
+ :display inline
185
+ &.manual-build
186
+ button
187
+ :margin-right 0
188
+
189
+ #build form, #last_build form
190
+ :font-size .75em
191
+ p.submit
192
+ :margin 0
193
+ :padding 0
194
+ :position absolute
195
+ :right .5em
196
+ :top 1.25em
197
+
198
+ .blank_slate, .error
199
+ p
200
+ :position relative
201
+ :top .3em
202
+ h1
203
+ :border-width 0
204
+ :margin 0
205
+ :padding 0
206
+ button
207
+ :float none
208
+ :border 0 none
209
+ :background transparent
210
+ :display inline
211
+ :color = !link_color
212
+ :padding 0.25em 0
213
+ :margin 0
214
+ &:hover
215
+ :background = !link_color
216
+ :color = !link_bg
217
+
218
+ .error
219
+ dt
220
+ :margin
221
+ :top 1.4em
222
+ :bottom .3em
223
+ :font
224
+ :size 1.75em
225
+ :family = !nice_fonts
226
+ dd
227
+ :line-height 1.4
228
+
229
+ .backtrace
230
+ :margin 1em 0
231
+ :overflow scroll
232
+ :height 30em
233
+ :border = 1px solid !rule_color
234
+ :line-height 1.6
235
+
236
+ #projects
237
+ :margin 1em 0 2em
238
+ :border-top = 1px solid !rule_color
239
+ li
240
+ :position relative
241
+ :border-bottom = 1px solid !rule_color
242
+ &.odd
243
+ :background = !content_bg - #080808
244
+ &.building
245
+ :background transparent url(/spinner.gif) no-repeat scroll right
246
+ a
247
+ :font-size 2em
248
+ :padding .25em
249
+ :line-height 1.2
250
+ :font-weight bold
251
+ :display block
252
+ &.success
253
+ :color = !success_color
254
+ &.failed
255
+ :color = !failed_color
256
+ .meta
257
+ :position absolute
258
+ :right .6em
259
+ :top 1.5em
260
+ :font-size 0.8em
261
+ :color = !light_color
262
+ :text-align right
263
+ &.building .meta
264
+ :right 1.6em
265
+ &.success .meta
266
+ :color = !success_color
267
+ &.failed .meta
268
+ :color = !failed_color
269
+
270
+
271
+ #previous_builds
272
+ li
273
+ a
274
+ :display block
275
+ :padding .25em
276
+ :margin-bottom .25em
277
+ :border
278
+ :width 1px
279
+ :style solid
280
+ strong
281
+ :font-size 1.3em
282
+ .attribution
283
+ :font-size .9em
284
+
285
+ #projects, #previous_builds
286
+ li
287
+ &.success a
288
+ :background-color = !success_bg
289
+ :border-color = !success_bg - #222
290
+ :color = !success_color
291
+ .attribution
292
+ :color = !success_bg - #444
293
+ &:hover
294
+ :background-color = !success_bg + #222
295
+ &.failed a
296
+ :background-color = !failed_bg
297
+ :border-color = !failed_bg - #222
298
+ :color = !failed_color
299
+ .attribution
300
+ :color = !failed_bg - #444
301
+ &:hover
302
+ :background-color = !failed_bg + #222
303
+
304
+
305
+ #build, #last_build
306
+ :position relative
307
+ h1, blockquote
308
+ :border
309
+ :width 0 1px
310
+ :style solid
311
+ h1
312
+ :border-top-width 1px
313
+ blockquote
314
+ :bottom-bottom-width 1px
315
+ :line-height 1.4
316
+
317
+ &.success
318
+ h1, blockquote
319
+ :background-color = !success_bg
320
+ :border-color = (!success_bg - #222) (!success_bg + #111) (!success_bg + #111) (!success_bg - #222)
321
+ h1
322
+ :color = !success_color
323
+ .meta
324
+ :color = !success_bg - #444
325
+
326
+ &.failed
327
+ h1, blockquote
328
+ :background-color = !failed_bg
329
+ :border-color = (!failed_bg - #222) (!failed_bg + #111) (!failed_bg + #111) (!failed_bg - #222)
330
+ h1
331
+ :color = !failed_color
332
+ .meta
333
+ :color = !failed_bg - #444
334
+
335
+ h1
336
+ :margin-top .5em
337
+ :margin-bottom 0
338
+ :padding .25em
339
+ :color = !success_color
340
+
341
+ blockquote
342
+ :padding .75em
343
+ :margin-bottom 2em
344
+ .meta
345
+ :margin-top 1em
346
+ :display block
347
+ :font-size .9em
348
+
349
+ pre.output
350
+ :background #111
351
+ :color #fff
352
+ :padding .5em
353
+ :overflow auto
354
+ :max-height 50em
355
+ :font-size .825em
356
+
357
+ .color30
358
+ :color #333
359
+ .color31
360
+ :color #e33
361
+ .color32
362
+ :color #3e3
363
+ .color33
364
+ :color #ee3
365
+ .color34
366
+ :color #33e
367
+ .color35
368
+ :color #e3e
369
+ .color36
370
+ :color #3ee
371
+ .color37
372
+ :color #fff
373
+
374
+ #push_path
375
+ :display block
376
+ :margin
377
+ :top 1em
378
+ :left 2em
379
+
380
+ a
381
+ &.success
382
+ :color = !success_bg
383
+ &:hover
384
+ :background-color = !success_bg
385
+ :color white
386
+ &.failed
387
+ :color = !failed_bg
388
+ &:hover
389
+ :background-color = !failed_bg
390
+ :color white
391
+
392
+ #footer
393
+ :padding 1.5em 2.5em
394
+ :border-top 1px solid #ccc
395
+ :font-size .8em
396
+ :width 50em !important
397
+ :color #666
398
+ :text-align right
399
+ strong
400
+ :font-weight bold
data/views/layout.haml ADDED
@@ -0,0 +1,29 @@
1
+ !!! Strict
2
+ %html{ :lang => "en", :"xml:lang" => "en", :xmlns => "http://www.w3.org/1999/xhtml" }
3
+ %head
4
+ %meta{ :content => "text/html; charset=utf-8", :"http-equiv" => "Content-Type" }
5
+ %meta{ :content => "en", :"http-equiv" => "Content-Language" }
6
+ %title= "#{@title.last} | integrity"
7
+ - stylesheets(:reset, :buttons, :integrity)
8
+ - unless @project.nil?
9
+ %link{ :rel => "alternate", |
10
+ :type => "application/atom+xml", |
11
+ :title => "Build history Atom", |
12
+ :href => "#{project_path(@project)}.atom"} |
13
+
14
+ %body
15
+ #header
16
+ %h1= @title.join(" / ")
17
+ %address.watermark
18
+ checked with
19
+ %a{ :href => "http://integrityapp.com", :title => "The fun continuous integration server" } integrity
20
+ #content= yield
21
+ - if Integrity.config && Integrity.config[:use_basic_auth]
22
+ #footer
23
+ - if authorized?
24
+ Oh, hello
25
+ %strong&= current_user
26
+ - else
27
+ Hey there!
28
+ %a{ :href => root_path("/login") } Log In
29
+ if you have a user
data/views/new.haml ADDED
@@ -0,0 +1,50 @@
1
+ %form{ :method => "post", :action => (@project.new_record? ? root_path("/") : project_path(@project)) }
2
+ - unless @project.new_record?
3
+ .hidden
4
+ %input{ :name => "_method", :type => "hidden", :value => "put" }
5
+
6
+ %p.required{ :class => error_class(@project, :name) }
7
+ %label{ :for => "project_name" }<
8
+ &== Name #{errors_on @project, :name}
9
+ %input.text#project_name{ :name => "project_data[name]", :type => "text", :value => h(@project.name) }
10
+
11
+ %p.required{ :class => error_class(@project, :uri) }
12
+ %label{ :for => "project_repository" }<
13
+ &== Git repository #{errors_on @project, :uri}
14
+ %input.text#project_repository{ :name => "project_data[uri]", :type => "text", :value => h(@project.uri) }
15
+
16
+ %p.normal{ :class => error_class(@project, :branch) }
17
+ %label{ :for => "project_branch" }<
18
+ &== Branch to track #{errors_on @project, :branch}
19
+ %input.text#project_branch{ :name => "project_data[branch]", :type => "text", :value => "master", :value => h(@project.branch) }
20
+
21
+ %p.normal{ :class => error_class(@project, :command) }
22
+ %label{ :for => "project_build_script" }
23
+ &== Build script #{errors_on @project, :command}
24
+ %textarea#project_build_script{ :name => "project_data[command]", :cols => 40, :rows => 2 }
25
+ &== #{@project.command.to_s}
26
+
27
+ %p.normal.checkbox
28
+ %label{ :for => "project_public" } Public project
29
+ %input.hidden{ :name => "project_data[public]", :value => "0", :type => "hidden" }
30
+ %input.checkbox#project_public{ checkbox("project_data[public]", @project.public?) }
31
+
32
+ - notifier_form
33
+
34
+ %p.submit
35
+ %button.positive{ :type => "submit" }= @project.new_record? ? "Create Project" : "Update Project"
36
+
37
+ - unless @project.new_record?
38
+ %h2 Push URL
39
+ %p
40
+ You can use this Push URL with your GitHub project to enable automated continuous integration.
41
+ %p
42
+ %code#push_url= push_url_for(@project)
43
+
44
+ %form{ :method => "post", :action => project_path(@project) }
45
+ .hidden
46
+ %input{ :name => "_method", :type => "hidden", :value => "delete" }
47
+ %h2 Delete this project
48
+ %p.submit.destroy
49
+ This will delete the project and all the builds in the system
50
+ %button.negative{ :type => "submit" } Yes, I'm sure, nuke it
@@ -0,0 +1,31 @@
1
+ .error
2
+ %h1
3
+ Ehm, you seem a bit lost, sir. Maybe going to the
4
+ %a{ :href => root_path("/"), :rel => "home" } list of projects
5
+ will help?
6
+ %dl
7
+ %dt Ouch. This is a 404 error-thingie, right?
8
+ %dd Yeah, you browsed to a page that doesn't exist in this server.
9
+
10
+ %dt What can I do?
11
+ %dd
12
+ As a very good book says on its cover:
13
+ = succeed "." do
14
+ %strong DON'T PANIC
15
+ / if you didn't get the reference you aren't as nerd as you should be
16
+ You should probably just go back to
17
+ %a{ :href => root_path("/"), :rel => "home" } the projects list
18
+ or, alternatively, go
19
+ = succeed "." do
20
+ %a{ :href => request.referer } back from whence you came
21
+
22
+ %dt
23
+ What the hell is
24
+ = succeed "?" do
25
+ %strong Integrity
26
+ %dd
27
+ Integrity is your friendly
28
+ %a{ :href => "http://en.wikipedia.org/wiki/Continuous_integration" } Continuous Integration
29
+ server. If you want to know more about us, check our website at
30
+ = succeed "." do
31
+ %a{ :href => "http://integrityapp.com" } integrityapp.com
@@ -0,0 +1,7 @@
1
+ %h2.notifier
2
+ %label
3
+ %input.checkbox{ checkbox("enabled_notifiers[]", enabled, :value => notifier, :id => "enabled_notifiers_#{notifier.downcase}") }
4
+ == #{notifier} Notifications
5
+ %span.warning be aware that no validation will be made on these fields
6
+ %fieldset{ :id => "#{notifier.downcase}_config" }
7
+ = yield
@@ -0,0 +1,21 @@
1
+ xml.instruct!
2
+ xml.feed :xmlns => "http://www.w3.org/2005/Atom" do
3
+ xml.title "Build history for #{@project.name}"
4
+ xml.subtitle @project.uri
5
+ xml.updated @project.last_commit.updated_at
6
+ xml.link :href => "#{project_url(@project)}.atom", :rel => "self"
7
+ xml.id "#{project_url(@project)}.atom"
8
+
9
+ @project.commits.each do |commit|
10
+ xml.entry do
11
+ xml.id commit_url(commit)
12
+ xml.link :href => commit_url(commit), :rel => "alternate", :type => "text/html"
13
+ xml.updated commit.created_at
14
+ xml.published commit.created_at
15
+
16
+ xml.title commit.human_readable_status
17
+ xml.author { xml.name(commit.author.name) }
18
+ xml.content("<div>#{partial(:commit_info, :commit => commit)}</div>", :type => "html")
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,30 @@
1
+ #administrative
2
+ %a{ :href => project_path(@project, :edit) } Edit Project
3
+
4
+ - if @project.commits.empty?
5
+ %form.blank_slate{ :action => project_path(@project, :builds), :method => :post }
6
+ %p No builds for this project, buddy
7
+ %h1
8
+ You can request a
9
+ %button{ :type => :submit } manual build
10
+ - else
11
+ - @commit = @project.last_commit
12
+ #last_build{ :class => @commit.status }
13
+ = partial(:commit_info, :commit => @commit)
14
+
15
+ %form{ :action => project_path(@project, :builds), :method => :post }
16
+ %p.submit.manual-build
17
+ %button{ :type => :submit, :title => "Fetch the last commit and build it" }<
18
+ Build the last commit
19
+ in the repository (or rebuild the latest)
20
+
21
+ - unless @project.previous_commits.empty?
22
+ %h2 Previous builds
23
+ %ul#previous_builds
24
+ - @project.previous_commits.each do |commit|
25
+ %li{ :class => commit.status }
26
+ %a{ :href => commit_path(commit) }
27
+ %strong.build<
28
+ &== Build #{commit.short_identifier}
29
+ %span.attribution<
30
+ == by #{commit.author.name}, #{pretty_date commit.committed_at}
@@ -0,0 +1,38 @@
1
+ .error
2
+ %h1
3
+ So... you don't know the password? Hmm... You can
4
+ %a{ :href => root_path("/login") } try again
5
+ or
6
+ = succeed "." do
7
+ %a{ :href => root_path("/"), :rel => "home" } go back
8
+
9
+ %dl
10
+ %dt Er... So... I'm trying to login without a password...
11
+ %dd
12
+ Hey pal, sorry, but I can't let in anyone that isn't
13
+ = succeed "." do
14
+ %strong on the list
15
+ I could lose my job you know? You'll have to come up with
16
+ a valid password :-(
17
+
18
+ %dt What can I do?
19
+ %dd
20
+ This just means that you can't access some part of this Integrity
21
+ server, but that shouldn't let you out of some of the
22
+ %a{ :href => root_path("/") } awesome projects
23
+ hosted here. If this was just a misunderstanding and you
24
+ %strong do
25
+ have a password, then
26
+ = succeed "." do
27
+ %a{ :href => root_path("/login") } click here to try again
28
+
29
+ %dt
30
+ So what the hell is
31
+ = succeed "?" do
32
+ %strong Integrity
33
+ %dd
34
+ Integrity is your friendly
35
+ %a{ :href => "http://en.wikipedia.org/wiki/Continuous_integration" } Continuous Integration
36
+ server. If you want to know more about us, check our website at
37
+ = succeed "." do
38
+ %a{ :href => "http://integrityapp.com" } integrityapp.com