blazing 0.1.0.alpha2 → 0.1.0.alpha3

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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- blazing (0.1.0.alpha1)
4
+ blazing (0.1.0.alpha3)
5
5
  activesupport
6
6
  grit
7
7
  i18n
@@ -11,46 +11,21 @@ GEM
11
11
  specs:
12
12
  activesupport (3.1.1)
13
13
  multi_json (~> 1.0)
14
- aruba (0.4.6)
15
- bcat (>= 0.6.1)
16
- childprocess (>= 0.2.0)
17
- cucumber (>= 1.0.2)
18
- rdiscount (>= 1.6.8)
19
- rspec (>= 2.6.0)
20
- bcat (0.6.2)
21
- rack (~> 1.0)
22
- builder (3.0.0)
23
- childprocess (0.2.2)
24
- ffi (~> 1.0.6)
25
- cucumber (1.1.0)
26
- builder (>= 2.1.2)
27
- diff-lcs (>= 1.1.2)
28
- gherkin (~> 2.5.0)
29
- json (>= 1.4.6)
30
- term-ansicolor (>= 1.0.6)
31
14
  diff-lcs (1.1.3)
32
- ffi (1.0.9)
33
- gherkin (2.5.2)
34
- json (>= 1.4.6)
35
15
  grit (2.4.1)
36
16
  diff-lcs (~> 1.1)
37
17
  mime-types (~> 1.15)
38
18
  growl (1.0.3)
39
19
  guard (0.8.4)
40
20
  thor (~> 0.14.6)
41
- guard-cucumber (0.7.3)
42
- cucumber (>= 0.10)
43
- guard (>= 0.8.3)
44
21
  guard-rspec (0.5.0)
45
22
  guard (>= 0.8.4)
46
23
  i18n (0.6.0)
47
24
  json (1.6.1)
48
25
  mime-types (1.16)
49
26
  multi_json (1.0.3)
50
- rack (1.3.4)
51
27
  rake (0.9.2)
52
28
  rb-fsevent (0.4.0)
53
- rdiscount (1.6.8)
54
29
  rdoc (3.10)
55
30
  json (~> 1.4)
56
31
  rspec (2.6.0)
@@ -61,18 +36,15 @@ GEM
61
36
  rspec-expectations (2.6.0)
62
37
  diff-lcs (~> 1.1.2)
63
38
  rspec-mocks (2.6.0)
64
- term-ansicolor (1.0.7)
65
39
  thor (0.14.6)
66
40
 
67
41
  PLATFORMS
68
42
  ruby
69
43
 
70
44
  DEPENDENCIES
71
- aruba
72
45
  blazing!
73
46
  growl
74
47
  guard
75
- guard-cucumber
76
48
  guard-rspec
77
49
  rake (~> 0.9.2)
78
50
  rb-fsevent
@@ -1,5 +1,6 @@
1
1
  require 'erb'
2
2
  require 'blazing/cli_logging'
3
+ require 'grit'
3
4
 
4
5
  class Blazing::Runner
5
6
 
@@ -3,7 +3,12 @@
3
3
  cd ..
4
4
  GIT_DIR='.git'
5
5
 
6
- git reset --hard HEAD
6
+ while read oldrev newrev refname
7
+ do
8
+ # Reset so we dont have unstaged changes... and then checkout the pushed ref
9
+ git reset --hard HEAD
10
+ git checkout $refname
11
+ done
7
12
 
8
13
  <% if @config.rvm %>
9
14
  # Load RVM into a shell session *as a function*
@@ -1,3 +1,3 @@
1
1
  module Blazing
2
- VERSION = "0.1.0.alpha2"
2
+ VERSION = "0.1.0.alpha3"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blazing
3
3
  version: !ruby/object:Gem::Version
4
- hash: -3702664376
4
+ hash: -3702664374
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
9
  - 0
10
10
  - alpha
11
- - 2
12
- version: 0.1.0.alpha2
11
+ - 3
12
+ version: 0.1.0.alpha3
13
13
  platform: ruby
14
14
  authors:
15
15
  - Felipe Kaufmann