├── .gitignore ├── .stow-local-ignore ├── ARCHITECTURE.md ├── MOTIVATION.md ├── README.md ├── bin └── vruby ├── example ├── 0_start_here.sh ├── 1_rack_app.rb ├── 2_nokogiri.rb ├── 3_bundler.sh ├── 4_rails.sh ├── 5_ruby_version │ ├── .ruby-version │ └── test.sh ├── Gemfile ├── Gemfile.lock └── test.html └── share └── vruby ├── downloads.yml └── embed ├── activate.fish └── activate.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.stow-local-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/.stow-local-ignore -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /MOTIVATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/MOTIVATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/README.md -------------------------------------------------------------------------------- /bin/vruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/bin/vruby -------------------------------------------------------------------------------- /example/0_start_here.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/0_start_here.sh -------------------------------------------------------------------------------- /example/1_rack_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/1_rack_app.rb -------------------------------------------------------------------------------- /example/2_nokogiri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/2_nokogiri.rb -------------------------------------------------------------------------------- /example/3_bundler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/3_bundler.sh -------------------------------------------------------------------------------- /example/4_rails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/4_rails.sh -------------------------------------------------------------------------------- /example/5_ruby_version/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.5 2 | -------------------------------------------------------------------------------- /example/5_ruby_version/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/5_ruby_version/test.sh -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/example/test.html -------------------------------------------------------------------------------- /share/vruby/downloads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/share/vruby/downloads.yml -------------------------------------------------------------------------------- /share/vruby/embed/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/share/vruby/embed/activate.fish -------------------------------------------------------------------------------- /share/vruby/embed/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joefiorini/vruby/HEAD/share/vruby/embed/activate.sh --------------------------------------------------------------------------------