NEW

Summary

Directory Structure

Directory structure:
└── rainchen-react-rails-img/
    ├── README.md
    ├── Gemfile
    ├── Rakefile
    ├── react-rails-img.gemspec
    ├── .rspec
    ├── .travis.yml
    ├── lib/
    │   └── react/
    │       └── rails/
    │           ├── img.rb
    │           └── img/
    │               ├── engine.rb
    │               └── version.rb
    └── spec/
        ├── rails_helper.rb
        ├── spec_helper.rb
        ├── dummy/
        │   ├── README.rdoc
        │   ├── config.ru
        │   ├── Rakefile
        │   ├── app/
        │   │   ├── assets/
        │   │   │   ├── images/
        │   │   │   │   └── .keep
        │   │   │   ├── javascripts/
        │   │   │   │   ├── application.js
        │   │   │   │   ├── components.js
        │   │   │   │   └── components/
        │   │   │   │       ├── post.js.jsx
        │   │   │   │       └── .gitkeep
        │   │   │   └── stylesheets/
        │   │   │       ├── application.css
        │   │   │       └── posts.css
        │   │   ├── controllers/
        │   │   │   ├── application_controller.rb
        │   │   │   ├── posts_controller.rb
        │   │   │   └── concerns/
        │   │   │       └── .keep
        │   │   ├── helpers/
        │   │   │   └── application_helper.rb
        │   │   ├── mailers/
        │   │   │   └── .keep
        │   │   ├── models/
        │   │   │   ├── .keep
        │   │   │   └── concerns/
        │   │   │       └── .keep
        │   │   └── views/
        │   │       ├── layouts/
        │   │       │   └── application.html.erb
        │   │       └── posts/
        │   │           └── show.html.erb
        │   ├── config/
        │   │   ├── application.rb
        │   │   ├── boot.rb
        │   │   ├── database.yml
        │   │   ├── environment.rb
        │   │   ├── routes.rb
        │   │   ├── secrets.yml
        │   │   ├── environments/
        │   │   │   ├── development.rb
        │   │   │   ├── production.rb
        │   │   │   └── test.rb
        │   │   ├── initializers/
        │   │   │   ├── assets.rb
        │   │   │   ├── backtrace_silencers.rb
        │   │   │   ├── cookies_serializer.rb
        │   │   │   ├── filter_parameter_logging.rb
        │   │   │   ├── inflections.rb
        │   │   │   ├── mime_types.rb
        │   │   │   ├── session_store.rb
        │   │   │   └── wrap_parameters.rb
        │   │   └── locales/
        │   │       └── en.yml
        │   ├── lib/
        │   │   └── assets/
        │   │       └── .keep
        │   ├── log/
        │   │   └── .keep
        │   └── public/
        │       ├── 404.html
        │       ├── 422.html
        │       └── 500.html
        ├── react/
        │   └── rails/
        │       ├── img_js_features_spec.rb
        │       └── img_spec.rb
        └── support/
            ├── capybara.rb
            └── debug_helper.rb

Files Content