Sha256: 97a1737bd87fc9a0232e652ab83138af9fa79abb7dccb5747daaae4592f067e6

Contents?: true

Size: 433 Bytes

Versions: 10

Compression:

Stored size: 433 Bytes

Contents

begin
  require 'spec'
rescue LoadError
  require 'rubygems'
  gem 'rspec'
  require 'spec'
end
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
require File.join(File.dirname(__FILE__), '..', 'lib', 'smartfm')

def be_a(klass)
  be_is_a(klass)
end

def rand_string(length = 100)
  chars = ('a'..'z').to_a + ('A'..'Z').to_a + ('0'..'9').to_a
  Array.new(length){ chars[rand(chars.size)] }.join
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
nov-smartfm-0.4.0 spec/spec_helper.rb
nov-smartfm-0.4.1 spec/spec_helper.rb
nov-smartfm-1.0.0 spec/spec_helper.rb
nov-smartfm-1.0.2 spec/spec_helper.rb
smartfm-0.3.0 spec/spec_helper.rb
smartfm-0.3.1 spec/spec_helper.rb
smartfm-1.0.2 spec/spec_helper.rb
smartfm-1.0.1 spec/spec_helper.rb
smartfm-0.4.0 spec/spec_helper.rb
smartfm-1.0.0 spec/spec_helper.rb