├── .document ├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── features ├── profile_with_env_vars.feature ├── step_definitions │ ├── environment_variable_steps.rb │ └── pass_fail_steps.rb └── support │ ├── env.rb │ ├── reset_env.rb │ └── spec_helper.rb ├── lib ├── rspec-prof.rb └── rspec-prof │ └── filename_helpers.rb └── rspec-prof.gemspec /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.3 2 | -------------------------------------------------------------------------------- /features/profile_with_env_vars.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/features/profile_with_env_vars.feature -------------------------------------------------------------------------------- /features/step_definitions/environment_variable_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/features/step_definitions/environment_variable_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/pass_fail_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/features/step_definitions/pass_fail_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/reset_env.rb: -------------------------------------------------------------------------------- 1 | After do 2 | ENV.delete 'RSPEC_PROFILE' 3 | end 4 | -------------------------------------------------------------------------------- /features/support/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/features/support/spec_helper.rb -------------------------------------------------------------------------------- /lib/rspec-prof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/lib/rspec-prof.rb -------------------------------------------------------------------------------- /lib/rspec-prof/filename_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/lib/rspec-prof/filename_helpers.rb -------------------------------------------------------------------------------- /rspec-prof.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinisterchipmunk/rspec-prof/HEAD/rspec-prof.gemspec --------------------------------------------------------------------------------