├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── active_decorator-rspec.gemspec ├── gemfiles ├── Gemfile-rails.4.2.x ├── Gemfile-rails.5.0.x └── Gemfile-rails.5.1.0.beta1 ├── lib └── active_decorator │ ├── rspec.rb │ └── rspec │ └── version.rb └── spec ├── decorators └── author_decorator_spec.rb ├── dummy_app.rb ├── dummy_app └── app │ └── controllers │ └── application_controller.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /active_decorator-rspec.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/active_decorator-rspec.gemspec -------------------------------------------------------------------------------- /gemfiles/Gemfile-rails.4.2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/gemfiles/Gemfile-rails.4.2.x -------------------------------------------------------------------------------- /gemfiles/Gemfile-rails.5.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/gemfiles/Gemfile-rails.5.0.x -------------------------------------------------------------------------------- /gemfiles/Gemfile-rails.5.1.0.beta1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/gemfiles/Gemfile-rails.5.1.0.beta1 -------------------------------------------------------------------------------- /lib/active_decorator/rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/lib/active_decorator/rspec.rb -------------------------------------------------------------------------------- /lib/active_decorator/rspec/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/lib/active_decorator/rspec/version.rb -------------------------------------------------------------------------------- /spec/decorators/author_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/spec/decorators/author_decorator_spec.rb -------------------------------------------------------------------------------- /spec/dummy_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/spec/dummy_app.rb -------------------------------------------------------------------------------- /spec/dummy_app/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/spec/dummy_app/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mizoR/active_decorator-rspec/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------