├── .gitignore ├── .rvmrc ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.rdoc ├── Rakefile ├── gemspec.rb ├── lib ├── simple_eav.rb └── version.rb ├── simple_eav.gemspec └── spec ├── db └── schema.rb ├── lib └── simple_eav_spec.rb ├── spec_helper.rb └── support ├── child.rb └── person.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use --create ruby-1.9.2-p290@simple_eav 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/Rakefile -------------------------------------------------------------------------------- /gemspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/gemspec.rb -------------------------------------------------------------------------------- /lib/simple_eav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/lib/simple_eav.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- 1 | module SimpleEav 2 | VERSION = "1.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /simple_eav.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/simple_eav.gemspec -------------------------------------------------------------------------------- /spec/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/spec/db/schema.rb -------------------------------------------------------------------------------- /spec/lib/simple_eav_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/spec/lib/simple_eav_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/child.rb: -------------------------------------------------------------------------------- 1 | class Child < ActiveRecord::Base 2 | belongs_to :person 3 | end -------------------------------------------------------------------------------- /spec/support/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlinquist/simple_eav/HEAD/spec/support/person.rb --------------------------------------------------------------------------------