spire-git-pivotal-tracker 1.0.0

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 (30) hide show
  1. data/LICENSE +202 -0
  2. data/NOTICE +2 -0
  3. data/README.md +176 -0
  4. data/bin/git-finish +19 -0
  5. data/bin/git-release +19 -0
  6. data/bin/git-start +19 -0
  7. data/lib/git-pivotal-tracker-integration/command/base.rb +47 -0
  8. data/lib/git-pivotal-tracker-integration/command/command.rb +20 -0
  9. data/lib/git-pivotal-tracker-integration/command/configuration.rb +109 -0
  10. data/lib/git-pivotal-tracker-integration/command/finish.rb +57 -0
  11. data/lib/git-pivotal-tracker-integration/command/prepare-commit-msg.sh +26 -0
  12. data/lib/git-pivotal-tracker-integration/command/release.rb +56 -0
  13. data/lib/git-pivotal-tracker-integration/command/start.rb +67 -0
  14. data/lib/git-pivotal-tracker-integration/util/git.rb +263 -0
  15. data/lib/git-pivotal-tracker-integration/util/shell.rb +36 -0
  16. data/lib/git-pivotal-tracker-integration/util/story.rb +124 -0
  17. data/lib/git-pivotal-tracker-integration/util/util.rb +20 -0
  18. data/lib/git-pivotal-tracker-integration/version-update/gradle.rb +64 -0
  19. data/lib/git-pivotal-tracker-integration/version-update/version_update.rb +20 -0
  20. data/lib/git_pivotal_tracker_integration.rb +18 -0
  21. data/spec/git-pivotal-tracker-integration/command/base_spec.rb +38 -0
  22. data/spec/git-pivotal-tracker-integration/command/configuration_spec.rb +91 -0
  23. data/spec/git-pivotal-tracker-integration/command/finish_spec.rb +45 -0
  24. data/spec/git-pivotal-tracker-integration/command/release_spec.rb +57 -0
  25. data/spec/git-pivotal-tracker-integration/command/start_spec.rb +54 -0
  26. data/spec/git-pivotal-tracker-integration/util/git_spec.rb +235 -0
  27. data/spec/git-pivotal-tracker-integration/util/shell_spec.rb +52 -0
  28. data/spec/git-pivotal-tracker-integration/util/story_spec.rb +137 -0
  29. data/spec/git-pivotal-tracker-integration/version-update/gradle_spec.rb +74 -0
  30. metadata +215 -0
data/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/NOTICE ADDED
@@ -0,0 +1,2 @@
1
+ Git Pivotal Tracker Integration
2
+ Copyright 2013 the original author or authors.
data/README.md ADDED
@@ -0,0 +1,176 @@
1
+ # Git Pivotal Tracker Integration
2
+ [![Build Status](https://travis-ci.org/nebhale/git-pivotal-tracker-integration.svg?branch=master)](https://travis-ci.org/nebhale/git-pivotal-tracker-integration)
3
+ [![Gem Version](https://badge.fury.io/rb/git-pivotal-tracker-integration.png)](http://badge.fury.io/rb/git-pivotal-tracker-integration)
4
+ [![Dependency Status](https://gemnasium.com/nebhale/git-pivotal-tracker-integration.svg)](https://gemnasium.com/nebhale/git-pivotal-tracker-integration)
5
+ [![Code Climate](https://codeclimate.com/github/nebhale/git-pivotal-tracker-integration.svg)](https://codeclimate.com/github/nebhale/git-pivotal-tracker-integration)
6
+
7
+
8
+ `git-pivotal-tracker-integration` provides a set of additional Git commands to help developers when working with [Pivotal Tracker][pivotal-tracker].
9
+
10
+ [pivotal-tracker]: http://www.pivotaltracker.com
11
+
12
+
13
+ ## Installation
14
+ `git-pivotal-tracker-integration` requires at least **Ruby 1.8.7** and **Git 1.8.2.1** in order to run. It is tested against Rubies _1.8.7_, _1.9.3_, and _2.0.0_. In order to install it, do the following:
15
+
16
+ ```plain
17
+ $ gem install git-pivotal-tracker-integration
18
+ ```
19
+
20
+
21
+ ## Usage
22
+ `git-pivotal-tracker-integration` is intended to be a very lightweight tool, meaning that it won't affect your day to day workflow very much. To be more specific, it is intended to automate branch creation and destruction as well as story state changes, but will not affect when you commit, when development branches are pushed to origin, etc. The typical workflow looks something like the following:
23
+
24
+ ```plain
25
+ $ git start # Creates branch and starts story
26
+ $ git commit ...
27
+ $ git commit ... # Your existing development process
28
+ $ git commit ...
29
+ $ git finish # Finishes pivotal story, creates PR.
30
+ ```
31
+
32
+
33
+ ## Configuration
34
+
35
+ ### Git Client
36
+ In order to use `git-pivotal-tracker-integration`, two Git client configuration properties must be set. If these properties have not been set, you will be prompted for them and your Git configuration will be updated.
37
+
38
+ | Name | Description
39
+ | ---- | -----------
40
+ | `pivotal.api-token` | Your Pivotal Tracker API Token. This can be found in [your profile][profile] and should be set globally.
41
+ | `pivotal.project-id` | The Pivotal Tracker project id for the repository your are working in. This can be found in the project's URL and should be set.
42
+
43
+ [profile]: https://www.pivotaltracker.com/profile
44
+
45
+
46
+ ### Git Server
47
+ In order to take advantage of automatic issue completion, the [Pivotal Tracker Source Code Integration][integration] must be enabled. If you are using GitHub, this integration is easy to enable by navgating to your project's 'Service Hooks' settings and configuring it with the proper credentials.
48
+
49
+ [integration]: https://www.pivotaltracker.com/help/integrations?version=v3#scm
50
+
51
+
52
+ ## Commands
53
+
54
+ ### `git start [ type | story-id ]`
55
+ This command starts a story by creating a Git branch and changing the story's state to `started`. This command can be run in three ways. First it can be run specifying the id of the story that you want to start.
56
+
57
+ ```plain
58
+ $ git start 12345678
59
+ ```
60
+
61
+ The second way to run the command is by specyifying the type of story that you would like to start. In this case it will then offer you the first five stories (based on the backlog's order) of that type to choose from.
62
+
63
+ ```plain
64
+ $ git start feature
65
+
66
+ 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit
67
+ 2. Pellentesque sit amet ante eu tortor rutrum pharetra
68
+ 3. Ut at purus dolor, vel ultricies metus
69
+ 4. Duis egestas elit et leo ultrices non fringilla ante facilisis
70
+ 5. Ut ut nunc neque, quis auctor mauris
71
+ Choose story to start:
72
+ ```
73
+
74
+ Finally the command can be run without specifying anything. In this case, it will then offer the first five stories (based on the backlog's order) of any type to choose from.
75
+
76
+ ```plain
77
+ $ git start
78
+
79
+ 1. FEATURE Donec convallis leo mi, dictum ornare sem
80
+ 2. CHORE Sed et magna lectus, sed auctor purus
81
+ 3. FEATURE In a nunc et enim tincidunt interdum vitae et risus
82
+ 4. FEATURE Fusce facilisis varius lorem, at tristique sem faucibus in
83
+ 5. BUG Donec iaculis ante neque, ut tempus augue
84
+ Choose story to start:
85
+ ```
86
+
87
+ Once a story has been selected by one of the three methods, the command then prompts for the name of the branch to create.
88
+
89
+ ```plain
90
+ $ git start 12345678
91
+ Title: Lorem ipsum dolor sit amet, consectetur adipiscing elitattributes
92
+ Description: Ut consequat sapien ut erat volutpat egestas. Integer venenatis lacinia facilisis.
93
+
94
+ Enter branch name (12345678-<branch-name>):
95
+ ```
96
+
97
+ The value entered here will be prepended with the story id such that the branch name is `<story-id>-<branch-name>`. This branch is then created and checked out.
98
+
99
+ If it doesn't exist already, a `prepare-commit-msg` commit hook is added to your repository. This commit hook augments the existing commit messsage pattern by appending the story id to the message automatically.
100
+
101
+ ```plain
102
+
103
+ [#12345678]
104
+ # Please enter the commit message for your changes. Lines starting
105
+ # with '#' will be ignored, and an empty message aborts the commit.
106
+ # On branch 12345678-lorem-ipsum
107
+ # Changes to be committed:
108
+ # (use "git reset HEAD <file>..." to unstage)
109
+ #
110
+ # new file: dolor.txt
111
+ #
112
+ ```
113
+
114
+ ### `git finish`
115
+ This command finishes a story and creates pull request on github.
116
+
117
+ ```plain
118
+ $ git finish
119
+ Creating PR on Github... OK
120
+ Finishing story on Pivotal Tracker... OK
121
+ ```
122
+
123
+ The command checks that it will be able to do a trivial merge from the development branch to the target branch before it does anything. The check has the following constraints
124
+
125
+ 1. The local repository must be up to date with the remote repository (e.g. `origin`)
126
+ 2. The local merge target branch (e.g. `master`) must be up to date with the remote merge target branch (e.g. `origin/master`)
127
+ 3. The common ancestor (i.e. the branch point) of the development branch (e.g. `12345678-lorem-ipsum`) must be tip of the local merge target branch (e.g. `master`)
128
+
129
+ If all of these conditions are met, the development branch will be merged into the target branch with a message of:
130
+
131
+ ```plain
132
+ Merge 12345678-lorem-ipsum to master
133
+
134
+ [Completes #12345678]
135
+ ```
136
+
137
+ The second way is with the `--no-complete` option specified. In this case `finish` performs the same actions except the `Completes`... statement in the commit message will be supressed.
138
+
139
+ ```plain
140
+ Merge 12345678-lorem-ipsum to master
141
+
142
+ [#12345678]
143
+ ```
144
+
145
+ After merging, the development branch is deleted and the changes are pushed to the remote repository.
146
+
147
+ ### `git release [story-id]`
148
+ This command creates a release for a story. It does this by updating the version string in the project and creating a tag. This command can be run in two ways. First it can be run specifying the release that you want to create.
149
+
150
+ ```plain
151
+ $ git release 12345678
152
+ ```
153
+ The other way the command can be run without specifying anything. In this case, it will select the first release story (based on the backlog's order).
154
+
155
+ ```plain
156
+ $ git release
157
+ Title: Lorem ipsum dolor sit amet, consectetur adipiscing elitattributes
158
+ ```
159
+
160
+ Once a story has been selected by one of the two methods, the command then prompts for the release version and next development version.
161
+
162
+ ```plain
163
+ $ git release
164
+ Title: Lorem ipsum dolor sit amet, consectetur adipiscing elitattributes
165
+
166
+ Enter release version (current: 1.0.0.BUILD-SNAPSHOT): 1.0.0.M1
167
+ Enter next development version (current: 1.0.0.BUILD-SNAPSHOT): 1.1.0.BUILD-SNAPSHOT
168
+ Creating tag v1.0.0.M1... OK
169
+ Pushing to origin... OK
170
+ ```
171
+
172
+ Once these have been entered, the version string for the current project is updated to the release version and a tag is created. Then the version string for the current project is updated to the next development version and a new commit along the original branch is created. Finally the tag and changes are pushed to the remote sever.
173
+
174
+ Version update is currently supported for the following kinds of projects. If you do not see a project type that you would like supported, please open an issue or submit a pull request.
175
+
176
+ * Gradle
data/bin/git-finish ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby -U
2
+ # Git Pivotal Tracker Integration
3
+ # Copyright (c) 2013 the original author or authors.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ require 'git-pivotal-tracker-integration/command/finish'
18
+
19
+ GitPivotalTrackerIntegration::Command::Finish.new().run ARGV[0]
data/bin/git-release ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby -U
2
+ # Git Pivotal Tracker Integration
3
+ # Copyright (c) 2013 the original author or authors.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ require 'git-pivotal-tracker-integration/command/release'
18
+
19
+ GitPivotalTrackerIntegration::Command::Release.new().run ARGV[0]
data/bin/git-start ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby -U
2
+ # Git Pivotal Tracker Integration
3
+ # Copyright (c) 2013 the original author or authors.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ require 'git-pivotal-tracker-integration/command/start'
18
+
19
+ GitPivotalTrackerIntegration::Command::Start.new().run ARGV[0]
@@ -0,0 +1,47 @@
1
+ # Git Pivotal Tracker Integration
2
+ # Copyright (c) 2013 the original author or authors.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ require 'git-pivotal-tracker-integration/command/command'
17
+ require 'git-pivotal-tracker-integration/command/configuration'
18
+ require 'git-pivotal-tracker-integration/util/git'
19
+ require 'pivotal-tracker'
20
+
21
+ # An abstract base class for all commands
22
+ # @abstract Subclass and override {#run} to implement command functionality
23
+ class GitPivotalTrackerIntegration::Command::Base
24
+
25
+ # Common initialization functionality for all command classes. This
26
+ # enforces that:
27
+ # * the command is being run within a valid Git repository
28
+ # * the user has specified their Pivotal Tracker API token
29
+ # * all communication with Pivotal Tracker will be protected with SSL
30
+ # * the user has configured the project id for this repository
31
+ def initialize
32
+ @repository_root = GitPivotalTrackerIntegration::Util::Git.repository_root
33
+ @configuration = GitPivotalTrackerIntegration::Command::Configuration.new
34
+
35
+ PivotalTracker::Client.token = @configuration.api_token
36
+ PivotalTracker::Client.use_ssl = true
37
+
38
+ @project = PivotalTracker::Project.find @configuration.project_id
39
+ end
40
+
41
+ # The main entry point to the command's execution
42
+ # @abstract Override this method to implement command functionality
43
+ def run
44
+ raise NotImplementedError
45
+ end
46
+
47
+ end