Sha256: 381f448618cf048e82ba62c441dfb84a26e6948e0d50b7abc5fff6362870964a
Contents?: true
Size: 967 Bytes
Versions: 1
Compression:
Stored size: 967 Bytes
Contents
Dir["#{File.dirname(__FILE__)}/rambo/**/*.rb"].each {|file| require file } module Rambo class << self attr_reader :options, :file def generate_contract_tests!(file = nil, opts = nil) @options = opts || yaml_options @file = file || @options.fetch(:raml, nil) || raml_file DocumentGenerator.generate!(@file, @options) end private def yaml_options opts = YAML.load(File.read(File.expand_path(".rambo.yml"))) if opts && opts.fetch("raml", nil) opts["raml"] = File.expand_path(opts.fetch("raml")) end opts rescue { rails: true } end # TODO: Permit use of multiple RAML files, since right now this only takes # the first one it finds in the "doc" directory. def raml_file return options.fetch("raml") if options && options.fetch("raml", nil) Dir.foreach("doc/raml") {|file| return "doc/raml/#{file}" if file.match(/\.raml$/) } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rambo_ruby-0.2.0 | lib/rambo.rb |