├── .gitignore ├── .hound.yml ├── .ruby-style.yml ├── .travis.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── gemfiles ├── rspec_2.gemfile └── rspec_3.gemfile ├── lib ├── rake_shared_context.rb └── rake_shared_context │ └── version.rb ├── rake_shared_context.gemspec └── spec ├── lib ├── report_generator.rb └── tasks │ └── reports.rake ├── paths_spec.rb ├── rake_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | ruby: 2 | config_file: .ruby-style.yml 3 | -------------------------------------------------------------------------------- /.ruby-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/.ruby-style.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/rspec_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/gemfiles/rspec_2.gemfile -------------------------------------------------------------------------------- /gemfiles/rspec_3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/gemfiles/rspec_3.gemfile -------------------------------------------------------------------------------- /lib/rake_shared_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/lib/rake_shared_context.rb -------------------------------------------------------------------------------- /lib/rake_shared_context/version.rb: -------------------------------------------------------------------------------- 1 | class RakeSharedContext 2 | VERSION = '0.3.0' 3 | end 4 | -------------------------------------------------------------------------------- /rake_shared_context.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/rake_shared_context.gemspec -------------------------------------------------------------------------------- /spec/lib/report_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/spec/lib/report_generator.rb -------------------------------------------------------------------------------- /spec/lib/tasks/reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/spec/lib/tasks/reports.rake -------------------------------------------------------------------------------- /spec/paths_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/spec/paths_spec.rb -------------------------------------------------------------------------------- /spec/rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/spec/rake_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnet/rake_shared_context/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------