Sha256: 2860c974ecbfadaffea4baf289c73cff1a158f244f6e2ca0822273e8da9ac465

Contents?: true

Size: 888 Bytes

Versions: 1

Compression:

Stored size: 888 Bytes

Contents

= LOCAT


== DESCRIPTION

LOCat is a fancy LOC code analysis tool.


== RESOURCES

* {Homepage}[http://rubyworks.github.com/locat]
* {Development}[http://github.com/rubyworks/locat]
* {Issue Tracker}[http://github.com/rubyworks/locat/issues]
* {Mailing List}[http://groups.google.com/group/rubyworks-mailinglist]


== SYNOPSIS

Define a `.locat` Ruby script in your project, e.g.

    match 'lib/**.rb' do |file, line|
      case line
      when /^\s*#/
        'Comment'
      when /^\s*$/
        'Blank'
      else
        'Code'
      end
    end

    match 'test/**.rb' do |file, line|
      case line
      when /^\s*#/
        'Comment'
      when /^\s*$/
        'Blank'
      else
        'Test'
      end
    end

Then run `locat`, e.g.

    $ locat -o locat.html


== COPYRIGHT

Copyright (c) 2011 Thomas Sawyer, Rubyworks

BSD 2-Clause License

See COPYING.rdoc for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
locat-0.1.0 README.rdoc