├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.rails-3.0.x ├── Gemfile.rails-3.0.x.lock ├── Gemfile.rails-3.1.x ├── Gemfile.rails-3.1.x.lock ├── Gemfile.rails-3.2.x ├── Gemfile.rails-3.2.x.lock ├── Gemfile.rails-4-head ├── LICENSE ├── README.md ├── Rakefile ├── TODO ├── activemodel-warnings.gemspec ├── lib ├── activemodel-warnings.rb └── activemodel-warnings │ └── version.rb └── test ├── instrument └── example.yml ├── test_helper.rb └── warnings_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | Gemfile.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.rails-3.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-3.0.x -------------------------------------------------------------------------------- /Gemfile.rails-3.0.x.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-3.0.x.lock -------------------------------------------------------------------------------- /Gemfile.rails-3.1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-3.1.x -------------------------------------------------------------------------------- /Gemfile.rails-3.1.x.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-3.1.x.lock -------------------------------------------------------------------------------- /Gemfile.rails-3.2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-3.2.x -------------------------------------------------------------------------------- /Gemfile.rails-3.2.x.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-3.2.x.lock -------------------------------------------------------------------------------- /Gemfile.rails-4-head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Gemfile.rails-4-head -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | switch to: require active_model-warnings ? -------------------------------------------------------------------------------- /activemodel-warnings.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/activemodel-warnings.gemspec -------------------------------------------------------------------------------- /lib/activemodel-warnings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/lib/activemodel-warnings.rb -------------------------------------------------------------------------------- /lib/activemodel-warnings/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/lib/activemodel-warnings/version.rb -------------------------------------------------------------------------------- /test/instrument/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/test/instrument/example.yml -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/warnings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paneq/activemodel-warnings/HEAD/test/warnings_test.rb --------------------------------------------------------------------------------