File: rsec.rb

package info (click to toggle)
ruby-rsec 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: ruby: 2,140; lisp: 13; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 348 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# coding: utf-8
# load the gem

# All code is under this module
module Rsec
  # preload configs

  # config method name
  # default is :r
  unless Rsec.const_defined?(:TO_PARSER_METHOD)
    TO_PARSER_METHOD = :r
  end

  VERSION = '1.0.0'
end

require "strscan"
require "rsec/utils"
require "rsec/parser"
require "rsec/helpers"