git_pivotal_tracker 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -3,3 +3,4 @@
3
3
  Gemfile.lock
4
4
  pkg/*
5
5
  test.txt
6
+ tmp
data/.rvmrc CHANGED
@@ -1 +1 @@
1
- rvm use --create ruby-1.9.2-p180@git_pivotal_tracker
1
+ rvm use --create ruby-1.9.2-p290@git_pivotal_tracker
data/Rakefile CHANGED
@@ -1,2 +1,12 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ require 'cucumber/rake/task'
8
+ Cucumber::Rake::Task.new(:cucumber) do |t|
9
+ t.cucumber_opts = '--format progress'
10
+ end
11
+
12
+ task :default => [:cucumber, :spec]
@@ -0,0 +1,8 @@
1
+ <%
2
+ rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
3
+ rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
4
+ std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip"
5
+ %>
6
+ default: <%= std_opts %> features
7
+ wip: --tags @wip:3 --wip features
8
+ rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
@@ -0,0 +1,15 @@
1
+ Feature: Diagnostics
2
+ In order to determine what Pivotal Tracker story I'm working on
3
+ As a developer
4
+ I want to be able to view the Pivotal Tracker story associated with my current topic branch
5
+
6
+ Background: A git repo for a project in Pivotal Tracker
7
+ Given the following git repo:
8
+ | Name | Pivotal Tracker Api Token/Project Id |
9
+ | git_pivotal_tracker | aa0469780e3d7322b17ab19de416c874/217457 |
10
+
11
+ Scenario: View the Pivotal Tracker Story for the Current Topic Branch
12
+ When I run `git-story` interactively
13
+ And I type ""
14
+ And I run `git-info`
15
+ Then the output should contain "feature-17553875-sample_feature"
@@ -0,0 +1,35 @@
1
+ Feature: Getting Started
2
+ In order to begin work on an unstarted Pivotal Tracker story
3
+ As a developer
4
+ I want to be able to start a new git branch for the latest unstarted Pivotal Tracker story from the command line
5
+
6
+ Background: A git repo for a project in Pivotal Tracker
7
+ Given the following git repo:
8
+ | Name | Pivotal Tracker Api Token/Project Id |
9
+ | git_pivotal_tracker | aa0469780e3d7322b17ab19de416c874/217457 |
10
+
11
+ Scenario Outline: Begin Working on a Latest Unstarted Story
12
+ When I run `<command>` interactively
13
+ And I type ""
14
+ And I run `git branch`
15
+ Then the output should contain "<git-branch-name>"
16
+
17
+ Examples:
18
+ | command | git-branch-name |
19
+ | git-story | feature-17553875-sample_feature |
20
+ | git-feature | feature-17553875-sample_feature |
21
+ | git-chore | chore-17553885-sample_chore |
22
+ | git-bug | bug-17553879-sample_bug |
23
+
24
+ Scenario Outline: Begin Working on the Latest Unstarted Story in a Custom Branch
25
+ When I run `<command>` interactively
26
+ And I type "<custom-git-branch-name>"
27
+ And I run `git branch`
28
+ Then the output should contain "<custom-git-branch-name>"
29
+
30
+ Examples:
31
+ | command | custom-git-branch-name |
32
+ | git-story | feature-17553875-custom_branch_name |
33
+ | git-feature | feature-17553875-custom_branch_name |
34
+ | git-chore | chore-17553885-custom_branch_name |
35
+ | git-bug | bug-17553879-custom_branch_name |
@@ -0,0 +1,3 @@
1
+ Before do
2
+ @aruba_timeout_seconds = 10
3
+ end
@@ -0,0 +1,14 @@
1
+ Given /^the following git repo:$/ do |table|
2
+ hash = table.hashes.first
3
+ api_token, project_id = hash['Pivotal Tracker Api Token/Project Id'].split '/'
4
+ steps %Q{
5
+ Given a directory named "#{hash[:Name]}"
6
+ And I cd to "#{hash[:Name]}"
7
+ And I run `git init`
8
+ And I run `git config --local pivotal.api-token #{api_token}`
9
+ And I run `git config --local pivotal.project-id #{project_id}`
10
+ And an empty file named "README"
11
+ And I run `git add .`
12
+ And I run `git commit -m "Initial Commit"`
13
+ }
14
+ end
@@ -0,0 +1 @@
1
+ require 'aruba/cucumber'
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.version = GitPivotalTracker::VERSION
10
10
  s.platform = Gem::Platform::RUBY
11
11
  s.authors = ["Ben Lindsey"]
12
- s.email = ["ben@carbonfive.com"]
12
+ s.email = ["ben@cumulo.us"]
13
13
  s.homepage = "https://github.com/blindsey/git_pivotal_tracker"
14
14
  s.summary = "A git workflow integrated with Pivotal Tracker"
15
15
  s.description = "provides a set of git workflow tools to start and finish Pivotal Tracker stories in topic branches"
@@ -18,6 +18,7 @@ Gem::Specification.new do |s|
18
18
 
19
19
  s.add_development_dependency "rspec"
20
20
  s.add_development_dependency "webmock"
21
+ s.add_development_dependency "aruba"
21
22
  s.add_runtime_dependency "grit"
22
23
  s.add_runtime_dependency "pivotal-tracker"
23
24
 
@@ -69,16 +69,15 @@ module GitPivotalTracker
69
69
  private
70
70
 
71
71
  def parse_gitconfig
72
- options[:api_token] = repository.config['pivotal.api-token']
73
- options[:project_id] = repository.config['pivotal.project-id']
74
- options[:integration_branch] = repository.config['pivotal.integration-branch']
75
- options[:only_mine] = repository.config['pivotal.only-mine']
76
- options[:include_rejected] = repository.config['pivotal.include-rejected']
77
- options[:fast_forward] = repository.config['pivotal.fast-forward']
78
- options[:rebase] = repository.config['pivotal.rebase']
79
- options[:full_name] = repository.config['pivotal.full-name'] || repository.config['user.name']
80
- options[:verbose] = repository.config['pivotal.verbose']
81
- options[:use_ssl] = repository.config['pivotal.use-ssl']
72
+ ['api-token', 'project-id', 'integration-branch'].each do |key|
73
+ options[key.sub(/-/, '_').to_sym] = repository.config["pivotal.#{key}"]
74
+ end
75
+
76
+ ['only-mine', 'include-rejected', 'fast-forward', 'rebase', 'verbose', 'use-ssl'].each do |key|
77
+ options[key.sub(/-/, '_').to_sym] = repository.config["pivotal.#{key}"] == '1'
78
+ end
79
+
80
+ options[:full_name] = repository.config['pivotal.full-name'] || repository.config['user.name']
82
81
  end
83
82
 
84
83
  def parse_argv(*args)
@@ -34,6 +34,9 @@ module GitPivotalTracker
34
34
  puts "Unable to mark Story #{story_id} as finished"
35
35
  return 1
36
36
  end
37
+ rescue Grit::Git::CommandFailed => e
38
+ puts "git error: #{e.err}"
39
+ return 1
37
40
  end
38
41
 
39
42
  private
@@ -13,6 +13,9 @@ module GitPivotalTracker
13
13
  puts "Story: #{story.name}"
14
14
  puts "Description: #{story.description}"
15
15
 
16
+ notes = story.notes.all.collect(&:text).join("\n")
17
+ puts "Comments: #{notes}"
18
+
16
19
  return 0
17
20
  end
18
21
  end
@@ -30,6 +30,9 @@ module GitPivotalTracker
30
30
  puts "Unable to mark #{type} as started"
31
31
  return 1
32
32
  end
33
+ rescue Grit::Git::CommandFailed => e
34
+ puts "git error: #{e.err}"
35
+ return 1
33
36
  end
34
37
 
35
38
  def type
@@ -41,8 +44,8 @@ module GitPivotalTracker
41
44
  def fetch_story
42
45
  state = options[:include_rejected] ? "unstarted,rejected" : "unstarted"
43
46
  conditions = { :current_state => state, :limit => 1 }
47
+ conditions[:story_type] = type == 'story' ? 'bug,chore,feature' : type
44
48
  conditions[:owned_by] = "\"#{options[:full_name]}\"" if options[:only_mine]
45
- conditions[:story_type] = type unless type == 'story'
46
49
  project.stories.all(conditions).first
47
50
  end
48
51
 
@@ -1,3 +1,3 @@
1
1
  module GitPivotalTracker
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <notes type="array">
3
+ <note>
4
+ <id type="integer">12563167</id>
5
+ <text>Testing comments</text>
6
+ <author>Ben Lindsey</author>
7
+ <noted_at type="datetime">2011/12/05 05:27:33 UTC</noted_at>
8
+ </note>
9
+ </notes>
@@ -1,6 +1,7 @@
1
1
  <?xml version="1.0"?>
2
2
  <story>
3
3
  <id>1234567890</id>
4
+ <url>http://www.pivotaltracker.com/story/show/1234567890</url>
4
5
  <name> Pause the film!</name>
5
6
  <description>As a moderator,
6
7
  I can pause the film
@@ -13,32 +13,14 @@ describe GitPivotalTracker::Base do
13
13
  subject.options[:integration_branch].should be_nil
14
14
  end
15
15
 
16
- it "leaves fast_forward nil" do
17
- subject.options[:fast_forward].should be_nil
18
- end
19
-
20
- it "leaves rebase nil" do
21
- subject.options[:rebase].should be_nil
22
- end
23
-
24
- it "leaves verbose nil" do
25
- subject.options[:verbose].should be_nil
26
- end
27
-
28
- it "leaves use_ssl nil" do
29
- subject.options[:use_ssl].should be_nil
30
- end
31
-
32
16
  it "leaves full_name nil" do
33
17
  subject.options[:full_name].should be_nil
34
18
  end
35
19
 
36
- it "leaves include_rejected nil" do
37
- subject.options[:include_rejected].should be_nil
38
- end
39
-
40
- it "leaves only_mine nil" do
41
- subject.options[:only_mine].should be_nil
20
+ [:fast_forward, :rebase, :verbose, :use_ssl, :include_rejected, :only_mine].each do |key|
21
+ it "does not set #{key}" do
22
+ subject.options[key].should_not be
23
+ end
42
24
  end
43
25
  end
44
26
 
@@ -110,12 +92,12 @@ describe GitPivotalTracker::Base do
110
92
  stub_git_config({
111
93
  'user.name' => 'User Name',
112
94
  'pivotal.integration-branch' => 'development',
113
- 'pivotal.only-mine' => 1,
114
- 'pivotal.include-rejected' => 1,
115
- 'pivotal.fast-forward' => 1,
116
- 'pivotal.rebase' => 1,
117
- 'pivotal.verbose' => 1,
118
- 'pivotal.use-ssl' => 1
95
+ 'pivotal.only-mine' => '1',
96
+ 'pivotal.include-rejected' => '1',
97
+ 'pivotal.fast-forward' => '1',
98
+ 'pivotal.rebase' => '1',
99
+ 'pivotal.verbose' => '1',
100
+ 'pivotal.use-ssl' => '1'
119
101
  })
120
102
  subject = GitPivotalTracker::Base.new
121
103
  end
@@ -132,28 +114,34 @@ describe GitPivotalTracker::Base do
132
114
  subject.options[:project_id].should == '123'
133
115
  end
134
116
 
135
- it "sets only_mine" do
136
- subject.options[:only_mine].should be
137
- end
138
-
139
- it "sets include_rejected" do
140
- subject.options[:include_rejected].should be
117
+ [:only_mine, :include_rejected, :fast_forward, :rebase, :verbose, :use_ssl].each do |key|
118
+ it "sets #{key}" do
119
+ subject.options[key].should be
120
+ end
141
121
  end
142
122
 
143
- it "sets fast_forward" do
144
- subject.options[:fast_forward].should be
145
- end
146
-
147
- it "sets rebase" do
148
- subject.options[:rebase].should be
123
+ it "sets the full_name to the user name" do
124
+ subject.options[:full_name].should == 'User Name'
149
125
  end
126
+ end
150
127
 
151
- it "sets verbose" do
152
- subject.options[:verbose].should be
128
+ context "with options set to 0" do
129
+ before do
130
+ stub_git_config({
131
+ 'pivotal.only-mine' => '0',
132
+ 'pivotal.include-rejected' => '0',
133
+ 'pivotal.fast-forward' => '0',
134
+ 'pivotal.rebase' => '0',
135
+ 'pivotal.verbose' => '0',
136
+ 'pivotal.use-ssl' => '0'
137
+ })
138
+ subject = GitPivotalTracker::Base.new
153
139
  end
154
140
 
155
- it "sets the full_name to the user name" do
156
- subject.options[:full_name].should == 'User Name'
141
+ [:only_mine, :include_rejected, :fast_forward, :rebase, :verbose, :use_ssl].each do |key|
142
+ it "does not set #{key}" do
143
+ subject.options[key].should_not be
144
+ end
157
145
  end
158
146
  end
159
147
  end
@@ -2,15 +2,38 @@ require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
2
 
3
3
  describe GitPivotalTracker::Story do
4
4
  describe "#run!" do
5
+ before do
6
+ stub_git_config
7
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123').
8
+ to_return :body => File.read("#{FIXTURES_PATH}/project.xml")
9
+ @story = GitPivotalTracker::Info.new("-t", "8a8a8a8", "-p", "123")
10
+ end
11
+
5
12
  context "given no story ID is found" do
6
13
  before do
7
- stub_git_config
8
- @subject = GitPivotalTracker::Info.new
9
- @subject.stub!(:story_id).and_return(nil)
14
+ @story.stub!(:story_id).and_return(nil)
10
15
  end
11
16
 
12
17
  it "fails" do
13
- @subject.run!.should == 1
18
+ @story.run!.should == 1
19
+ end
20
+ end
21
+
22
+ context "given a story exists" do
23
+ before do
24
+ @story.stub!(:story_id).and_return('1234567890')
25
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories/1234567890').
26
+ to_return :body => File.read("#{FIXTURES_PATH}/story.xml")
27
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories/1234567890/notes').
28
+ to_return :body => File.read("#{FIXTURES_PATH}/notes.xml")
29
+ end
30
+
31
+ it "outputs correctly" do
32
+ @story.should_receive(:puts).with("URL: http://www.pivotaltracker.com/story/show/1234567890")
33
+ @story.should_receive(:puts).with("Story: Pause the film!")
34
+ @story.should_receive(:puts).with("Description: As a moderator,\nI can pause the film\nIn order to allow another activity to take place (discussion, etc).")
35
+ @story.should_receive(:puts).with("Comments: Testing comments")
36
+ @story.run!.should == 0
14
37
  end
15
38
  end
16
39
  end
@@ -10,7 +10,7 @@ describe GitPivotalTracker::Story do
10
10
 
11
11
  context "given there are no stories" do
12
12
  before do
13
- stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted&limit=1').
13
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted%20story_type:bug,chore,feature&limit=1').
14
14
  to_return :body => File.read("#{FIXTURES_PATH}/no_stories.xml")
15
15
  end
16
16
 
@@ -35,7 +35,7 @@ describe GitPivotalTracker::Story do
35
35
  before do
36
36
  @story = GitPivotalTracker::Story.new("-t", "8a8a8a8", "-p", "123", "--include-rejected")
37
37
 
38
- stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted,rejected&limit=1').
38
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted,rejected%20story_type:bug,chore,feature&limit=1').
39
39
  to_return :body => File.read("#{FIXTURES_PATH}/one_story.xml")
40
40
  end
41
41
 
@@ -48,7 +48,7 @@ describe GitPivotalTracker::Story do
48
48
  context "when the only-mine flag is set" do
49
49
  before do
50
50
  @story = GitPivotalTracker::Story.new("-t", "8a8a8a8", "-p", "123", "--full-name", "Ben Lindsey", "--only-mine")
51
- stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted%20owned_by:%22Ben%20Lindsey%22&limit=1').
51
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted%20story_type:bug,chore,feature%20owned_by:%22Ben%20Lindsey%22&limit=1').
52
52
  to_return :body => File.read("#{FIXTURES_PATH}/one_story.xml")
53
53
  end
54
54
 
@@ -60,7 +60,7 @@ describe GitPivotalTracker::Story do
60
60
 
61
61
  context "when the default options are used" do
62
62
  before do
63
- stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted&limit=1').
63
+ stub_request(:get, 'http://www.pivotaltracker.com/services/v3/projects/123/stories?filter=current_state:unstarted%20story_type:bug,chore,feature&limit=1').
64
64
  to_return :body => File.read("#{FIXTURES_PATH}/one_story.xml")
65
65
  end
66
66
 
metadata CHANGED
@@ -1,66 +1,76 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: git_pivotal_tracker
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.9
4
5
  prerelease:
5
- version: 0.0.8
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Ben Lindsey
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-08-19 00:00:00 -07:00
14
- default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
12
+ date: 2011-12-05 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
17
15
  name: rspec
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &70119800499000 !ruby/object:Gem::Requirement
20
17
  none: false
21
- requirements:
22
- - - ">="
23
- - !ruby/object:Gem::Version
24
- version: "0"
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
25
22
  type: :development
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
23
+ prerelease: false
24
+ version_requirements: *70119800499000
25
+ - !ruby/object:Gem::Dependency
28
26
  name: webmock
27
+ requirement: &70119800498540 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
29
34
  prerelease: false
30
- requirement: &id002 !ruby/object:Gem::Requirement
35
+ version_requirements: *70119800498540
36
+ - !ruby/object:Gem::Dependency
37
+ name: aruba
38
+ requirement: &70119800498120 !ruby/object:Gem::Requirement
31
39
  none: false
32
- requirements:
33
- - - ">="
34
- - !ruby/object:Gem::Version
35
- version: "0"
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
36
44
  type: :development
37
- version_requirements: *id002
38
- - !ruby/object:Gem::Dependency
39
- name: grit
40
45
  prerelease: false
41
- requirement: &id003 !ruby/object:Gem::Requirement
46
+ version_requirements: *70119800498120
47
+ - !ruby/object:Gem::Dependency
48
+ name: grit
49
+ requirement: &70119800497700 !ruby/object:Gem::Requirement
42
50
  none: false
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: "0"
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
47
55
  type: :runtime
48
- version_requirements: *id003
49
- - !ruby/object:Gem::Dependency
50
- name: pivotal-tracker
51
56
  prerelease: false
52
- requirement: &id004 !ruby/object:Gem::Requirement
57
+ version_requirements: *70119800497700
58
+ - !ruby/object:Gem::Dependency
59
+ name: pivotal-tracker
60
+ requirement: &70119800497280 !ruby/object:Gem::Requirement
53
61
  none: false
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- version: "0"
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
58
66
  type: :runtime
59
- version_requirements: *id004
60
- description: provides a set of git workflow tools to start and finish Pivotal Tracker stories in topic branches
61
- email:
62
- - ben@carbonfive.com
63
- executables:
67
+ prerelease: false
68
+ version_requirements: *70119800497280
69
+ description: provides a set of git workflow tools to start and finish Pivotal Tracker
70
+ stories in topic branches
71
+ email:
72
+ - ben@cumulo.us
73
+ executables:
64
74
  - git-bug
65
75
  - git-chore
66
76
  - git-feature
@@ -69,10 +79,8 @@ executables:
69
79
  - git-story
70
80
  - prepare-commit-msg
71
81
  extensions: []
72
-
73
82
  extra_rdoc_files: []
74
-
75
- files:
83
+ files:
76
84
  - .gitignore
77
85
  - .rvmrc
78
86
  - Gemfile
@@ -86,6 +94,12 @@ files:
86
94
  - bin/git-info
87
95
  - bin/git-story
88
96
  - bin/prepare-commit-msg
97
+ - cucumber.yml
98
+ - features/diagnostics.feature
99
+ - features/getting_started.feature
100
+ - features/hooks/aruba.rb
101
+ - features/step_definitions/git_steps.rb
102
+ - features/support/env.rb
89
103
  - git_pivotal_tracker.gemspec
90
104
  - lib/git_pivotal_tracker.rb
91
105
  - lib/git_pivotal_tracker/base.rb
@@ -95,6 +109,7 @@ files:
95
109
  - lib/git_pivotal_tracker/version.rb
96
110
  - spec/fixtures/finish_story.xml
97
111
  - spec/fixtures/no_stories.xml
112
+ - spec/fixtures/notes.xml
98
113
  - spec/fixtures/one_story.xml
99
114
  - spec/fixtures/project.xml
100
115
  - spec/fixtures/start_story.xml
@@ -104,37 +119,39 @@ files:
104
119
  - spec/git_pivotal_tracker/info_spec.rb
105
120
  - spec/git_pivotal_tracker/story_spec.rb
106
121
  - spec/spec_helper.rb
107
- has_rdoc: true
108
122
  homepage: https://github.com/blindsey/git_pivotal_tracker
109
123
  licenses: []
110
-
111
124
  post_install_message:
112
125
  rdoc_options: []
113
-
114
- require_paths:
126
+ require_paths:
115
127
  - lib
116
- required_ruby_version: !ruby/object:Gem::Requirement
128
+ required_ruby_version: !ruby/object:Gem::Requirement
117
129
  none: false
118
- requirements:
119
- - - ">="
120
- - !ruby/object:Gem::Version
121
- version: "0"
122
- required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
135
  none: false
124
- requirements:
125
- - - ">="
126
- - !ruby/object:Gem::Version
136
+ requirements:
137
+ - - ! '>='
138
+ - !ruby/object:Gem::Version
127
139
  version: 1.3.6
128
140
  requirements: []
129
-
130
141
  rubyforge_project:
131
- rubygems_version: 1.6.2
142
+ rubygems_version: 1.8.10
132
143
  signing_key:
133
144
  specification_version: 3
134
145
  summary: A git workflow integrated with Pivotal Tracker
135
- test_files:
146
+ test_files:
147
+ - features/diagnostics.feature
148
+ - features/getting_started.feature
149
+ - features/hooks/aruba.rb
150
+ - features/step_definitions/git_steps.rb
151
+ - features/support/env.rb
136
152
  - spec/fixtures/finish_story.xml
137
153
  - spec/fixtures/no_stories.xml
154
+ - spec/fixtures/notes.xml
138
155
  - spec/fixtures/one_story.xml
139
156
  - spec/fixtures/project.xml
140
157
  - spec/fixtures/start_story.xml