├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── app.rb ├── assets └── como-utilizar-este-guia.png └── spec ├── integration └── app_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/app.rb -------------------------------------------------------------------------------- /assets/como-utilizar-este-guia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/assets/como-utilizar-este-guia.png -------------------------------------------------------------------------------- /spec/integration/app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serradura/dicas-de-programacao-em-ruby/HEAD/spec/integration/app_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('..', __FILE__) 2 | 3 | require 'aruba/rspec' 4 | --------------------------------------------------------------------------------