├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── bundle ├── console ├── htmldiff ├── ldiff ├── rackup ├── rake ├── rspec └── setup ├── config.ru ├── image_placeholder.gemspec ├── lib ├── image_placeholder.rb └── image_placeholder │ ├── middleware.rb │ └── version.rb └── spec ├── middleware_spec.rb ├── spec_helper.rb └── support ├── index.html ├── ruby.jpg └── ruby.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/console -------------------------------------------------------------------------------- /bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/htmldiff -------------------------------------------------------------------------------- /bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/ldiff -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/config.ru -------------------------------------------------------------------------------- /image_placeholder.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/image_placeholder.gemspec -------------------------------------------------------------------------------- /lib/image_placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/lib/image_placeholder.rb -------------------------------------------------------------------------------- /lib/image_placeholder/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/lib/image_placeholder/middleware.rb -------------------------------------------------------------------------------- /lib/image_placeholder/version.rb: -------------------------------------------------------------------------------- 1 | module ImagePlaceholder 2 | VERSION = "0.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/spec/middleware_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/spec/support/index.html -------------------------------------------------------------------------------- /spec/support/ruby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/image_placeholder/HEAD/spec/support/ruby.jpg -------------------------------------------------------------------------------- /spec/support/ruby.txt: -------------------------------------------------------------------------------- 1 | Ruby --------------------------------------------------------------------------------