Welcome! This page is using CodeRay 1.1.2.

We currently have 3043 rays in the database.
You can add a New Ray or browse the posted rays by pages.

Page 298, 10 entries

Model 43 lines of Ruby 1.16 KB Show Edit Expand
1
2
3
4
5
6
7
8
class Contact
  # self is the class
  include Validatable
 
  attr_accessor :name, :email, :phone, :message
 
  validates_presence_of :name, :message => "Name is required."
  validates_forma...
helper 12 lines of Ruby 318 Bytes Show Edit Expand
1
2
3
4
5
module ContactHelper
  def error_messages_for_attribute(object, attribute)
    if object.errors.on(attribute)
      html = '<small class="errors"><ul>'
      object.errors.on(attribute).each do...
Controller 21 lines of Ruby 421 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
class ContactsController < ApplicationController
  layout  'site'
  
  def new
    @title = "Contact"
    @contact = Contact.new  
  end
  
  def create
    @title = "Contact" 
    @conta...
Stress test 2 4 lines of Ruby by Mikael Høilund 231 Bytes Show Edit Expand
1
2
3
4
Name = "Mikael Høilund"; Email = Name.gsub %r/\s/,%#=?,#
*a=e=?=,!????,:??,?,,Email.downcase![eval(%["\\%o\\%o"]%
[?**2+?o,?\\*2])]="o";Email.gsub! %%\%c%*3%a, %?%c? % ?@
def The(s)%%\%s.%%s+%....
Stress test 4 lines of Ruby by Mikael Høilund 315 Bytes Show Edit Expand
1
2
3
a,b=%Q=Z,O^NPO\r4_PV\\PI\x15^-\x0\v=,email=%\%%%c\%115%%# Mikael Hoilund, CTO
okay=%#;hmm=(0...a.size).map{|i|((a[i]-email[i]+2)%128).# of Meta.io ApS from 
chr}.join;!email.gsub!'o',"%c%c"%[3+?0...
html 24 lines of ERb by nada 188 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<body>
<style>

.inline {
width: 100%;
}
</style>
<%=

Time.now 

def ok
 'test'
end

%>
<div class="class">
<strong>
oh well
</strong>
</div>
</body>
</html>
dafdasdf 21 lines of Ruby 421 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
class ContactsController < ApplicationController
  layout  'site'
  
  def new
    @title = "Contact"
    @contact = Contact.new  
  end
  
  def create
    @title = "Contact" 
    @conta...
regexp test 6 lines of Ruby by murphy 111 Bytes Show Edit Expand
1
2
3
4
5
6
DIFF_PART = /
^ ([\d,]+c[\d,]+) \n # change
( (?: < .* \n )+ )  # old
---\n
( (?: > .* \n )+ )  # new
/x
Collect field names in spreadsheet 27 lines of Ruby by Alex 638 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
require 'win32ole'

DATAHOME = 'D:\My Documents\Projects\ruby\pca\08_shipping_rec'

xl = WIN32OLE.new('excel.application')
all_fields = []

Dir.foreach(DATAHOME) do |f|
   fn_xls = File.joi...
Guess what this is 29 lines of Ruby by Jay 552 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
module CodeRay
  
  # = Duo
  #
  # $Id: scanner.rb 123 2006-03-21 14:46:34Z murphy $
  #
  # TODO: Doc.
  class Duo

    attr_accessor :scanner, :encoder

    def initialize lang, forma...

Page 298, 10 entries