- Open a project in Jenkins
- Click "more" in Build History (this should show all builds in that project)
- Open console, paste in above code.
- Inspect
buildStats
object.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am holek on github. | |
* I am holek (https://keybase.io/holek) on keybase. | |
* I have a public key ASDyYLw2fQjCrNuRqzA8D2-VZcOj3vgmbdteO7Gt-oIhyQo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Arel | |
module Visitors | |
class MSSQL | |
private | |
def visit_Arel_Nodes_UpdateStatement o | |
if o.orders.empty? && o.limit.nil? | |
wheres = o.wheres | |
else | |
key = o.key |
This monkey patch allows you to use lock hints defined by AR-JDBC adapter for MSSQL with Rails 3.2.
It will not work with Rails 3.1 or 4. It might as well not work with anything else than MSSQL.
Not like it has to...
It will work with this fork, though.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: | |
# | |
# class SomeView < ActiveRecord::Base | |
# include ViewObject | |
# end | |
# | |
# SomeView.view_sql #=> prints out MsSQL view SQL statement | |
module ViewObject | |
extend ActiveSupport::Concern |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Construction site | |
*/ | |
ul, | |
ol { | |
margin-top: 0; | |
margin-bottom: 10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Construction site | |
*/ | |
ul, | |
ol { | |
margin-top: 0; | |
margin-bottom: 10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Construction site | |
*/ | |
ul, | |
ol { | |
margin-top: 0; | |
margin-bottom: 10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.apple { | |
display:block; | |
height: 273px; | |
width: 1024px; | |
background-color: #EA294C; | |
background-image: -webkit-linear-gradient(left, #EA294C, #EA294C 16.6%, #EA6F3C 16.6%, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* text-like inputs | |
*/ | |
table input[type="text"] { | |
border: 1px solid transparent; | |
background: white; | |
padding: 3px 5px; | |
} | |
table input[type="submit"] { |
NewerOlder