Sha256: 5de7935488fb21610ce67d415df12779368053f8c178c8f28be71cba2c9b1c16

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

require 'rubygems'
require 'bundler/setup'

require 'active_record'
require 'mongoid'
require 'phony_rails'

ActiveRecord::Base.establish_connection(
  :adapter  => "sqlite3",
  :database => ":memory:"
)

ActiveRecord::Schema.define do
  create_table :active_record_models do |table|
    table.column :phone_attribute, :string
    table.column :phone_number, :string
    table.column :phone_number_as_normalized, :string
  end
end

module SharedModelMethods
  extend ActiveSupport::Concern
  included do
    attr_accessor :phone_method, :phone1_method, :country_code
    phony_normalized_method :phone_attribute # adds normalized_phone_attribute method
    phony_normalized_method :phone_method # adds normalized_phone_method method
    phony_normalized_method :phone1_method, :default_country_code => 'DE' # adds normalized_phone_method method
    phony_normalize :phone_number # normalized on validation
  end
end

class ActiveRecordModel < ActiveRecord::Base
  include SharedModelMethods
end

class ActiveRecordDummy < ActiveRecordModel
end

class MongoidModel
  include Mongoid::Document
  include Mongoid::Phony
  field :phone_attribute, :type => String
  field :phone_number,    :type => String
  field :phone_number_as_normalized, :type => String
  include SharedModelMethods
end

class MongoidDummy < MongoidModel
end

I18n.config.enforce_available_locales = true

RSpec.configure do |config|
  # some (optional) config here
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phony_rails-0.9.0 spec/spec_helper.rb
phony_rails-0.8.2 spec/spec_helper.rb