├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── rails_react_stdio.rb └── rails_react_stdio │ ├── configuration.rb │ ├── react.rb │ └── version.rb ├── rails_react_stdio.gemspec └── test ├── helper_files ├── Hello.jsx └── package.json ├── react └── render_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rails_react_stdio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/lib/rails_react_stdio.rb -------------------------------------------------------------------------------- /lib/rails_react_stdio/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/lib/rails_react_stdio/configuration.rb -------------------------------------------------------------------------------- /lib/rails_react_stdio/react.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/lib/rails_react_stdio/react.rb -------------------------------------------------------------------------------- /lib/rails_react_stdio/version.rb: -------------------------------------------------------------------------------- 1 | module RailsReactStdio 2 | VERSION = "0.1.0".freeze 3 | end 4 | -------------------------------------------------------------------------------- /rails_react_stdio.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/rails_react_stdio.gemspec -------------------------------------------------------------------------------- /test/helper_files/Hello.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/test/helper_files/Hello.jsx -------------------------------------------------------------------------------- /test/helper_files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/test/helper_files/package.json -------------------------------------------------------------------------------- /test/react/render_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/test/react/render_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronvb/rails_react_stdio/HEAD/test/test_helper.rb --------------------------------------------------------------------------------