- Stars: 77643
- Columns: 12 by default
- Syntax: "row", "col-md-1", "col-xs-12 col-md-8"
- Stars: 19381
- Columns: 12
namespace Log | |
{ | |
/// <summary> | |
/// Helps you trace the execution of your code. | |
/// </summary> | |
/// <remarks> | |
/// Same as System.Diagnostics.Trace but adds the class and method names to the trace message.<br/> | |
/// <br/> | |
/// More documentation about Trace and Debug:<br/> | |
/// <list type="bullet"> |
class Event < ActiveRecord::Base | |
include EventJSON | |
attr_accessible *EventJSON.attributes | |
validates :starts_at, presence: true | |
validates :ends_at, presence: true | |
validates :all_day, inclusion: { in: [true, false] } | |
end |
#!/usr/bin/env ruby | |
# A simple regexp to manipulate svn dump files. | |
# | |
# Example of a svn dump file: | |
# | |
# Node-path: MySourceCode.cpp | |
# Node-kind: file | |
# Node-action: add | |
# Prop-content-length: 10 |