Sha256: 286df8e7007ce2ff47aec6660fcae0ecd26cdc1861093885f90fbb157e184d80

Contents?: true

Size: 165 Bytes

Versions: 7

Compression:

Stored size: 165 Bytes

Contents

class Scope
  attr_accessor :table_name, :to_sql
  def initialize(table_name)
    @table_name = table_name
    @to_sql     = "select * from #{table_name}"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cached_counts-0.3.0 spec/support/scope.rb
cached_counts-0.2.5 spec/support/scope.rb
cached_counts-0.2.4 spec/support/scope.rb
cached_counts-0.2.3 spec/support/scope.rb
cached_counts-0.2.2 spec/support/scope.rb
cached_counts-0.2.1 spec/support/scope.rb
cached_counts-0.2.0 spec/support/scope.rb