blueprints 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. metadata +1 -2
  2. data/lib/tasks/blueprints_tasks.rake +0 -12
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blueprints
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrius Chamentauskas
@@ -38,7 +38,6 @@ files:
38
38
  - lib/blueprints/plan.rb
39
39
  - lib/blueprints/rspec_extensions.rb
40
40
  - lib/blueprints/test_unit_extensions.rb
41
- - lib/tasks/blueprints_tasks.rake
42
41
  - README.rdoc
43
42
  - LICENSE
44
43
  has_rdoc: true
@@ -1,12 +0,0 @@
1
- require File.dirname(__FILE__)+'/../blueprints'
2
-
3
- namespace :hornsby do
4
-
5
- desc "Load the scenario named in the env var SCENARIO"
6
- task :scenario => :environment do
7
- raise "set SCENARIO to define which scenario to load" unless ENV['SCENARIO']
8
- ::Hornsby.load
9
- ::Hornsby.build(ENV['SCENARIO'])
10
- end
11
-
12
- end