v2gpti 0.2.0.b1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +202 -0
  3. data/NOTICE +2 -0
  4. data/README.md +184 -0
  5. data/bin/git-finish +19 -0
  6. data/bin/git-release +19 -0
  7. data/bin/git-start +19 -0
  8. data/lib/git-pivotal-tracker-integration/command/base.rb +48 -0
  9. data/lib/git-pivotal-tracker-integration/command/command.rb +20 -0
  10. data/lib/git-pivotal-tracker-integration/command/configuration.rb +104 -0
  11. data/lib/git-pivotal-tracker-integration/command/finish.rb +38 -0
  12. data/lib/git-pivotal-tracker-integration/command/prepare-commit-msg.sh +26 -0
  13. data/lib/git-pivotal-tracker-integration/command/release.rb +56 -0
  14. data/lib/git-pivotal-tracker-integration/command/start.rb +96 -0
  15. data/lib/git-pivotal-tracker-integration/util/git.rb +244 -0
  16. data/lib/git-pivotal-tracker-integration/util/shell.rb +36 -0
  17. data/lib/git-pivotal-tracker-integration/util/story.rb +134 -0
  18. data/lib/git-pivotal-tracker-integration/util/util.rb +20 -0
  19. data/lib/git-pivotal-tracker-integration/version-update/gradle.rb +64 -0
  20. data/lib/git-pivotal-tracker-integration/version-update/version_update.rb +20 -0
  21. data/lib/git_pivotal_tracker_integration.rb +18 -0
  22. data/spec/git-pivotal-tracker-integration/command/base_spec.rb +38 -0
  23. data/spec/git-pivotal-tracker-integration/command/configuration_spec.rb +91 -0
  24. data/spec/git-pivotal-tracker-integration/command/finish_spec.rb +45 -0
  25. data/spec/git-pivotal-tracker-integration/command/release_spec.rb +57 -0
  26. data/spec/git-pivotal-tracker-integration/command/start_spec.rb +55 -0
  27. data/spec/git-pivotal-tracker-integration/util/git_spec.rb +235 -0
  28. data/spec/git-pivotal-tracker-integration/util/shell_spec.rb +52 -0
  29. data/spec/git-pivotal-tracker-integration/util/story_spec.rb +143 -0
  30. data/spec/git-pivotal-tracker-integration/version-update/gradle_spec.rb +74 -0
  31. metadata +213 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a647b308c1cda53b5e746fc58a165e0228ded646
4
+ data.tar.gz: be648ce43be7198ca34a7ba095896d25a9fca672
5
+ SHA512:
6
+ metadata.gz: 60b76b0211a8962d3c8eab54abb6fe479738e43dc50b82a207d4c858c88433f0a717fa5b1050e0b5d7d044386110d2da0bfd5572fa0b97fa7c64982d37a9c231
7
+ data.tar.gz: ac4cdf3ebe5dcd3f7283ee3ae2ccca3ba4d127d6c4fa8267ea3289553eaf7c40c5bd623b4bea07833b8cb1b4884668c45a760b6d6fa5252cd9ce0e83e0c4f47b
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,184 @@
1
+ # V2GPTI
2
+ # Git Pivotal Tracker Integration
3
+ [![Build Status](https://travis-ci.org/nebhale/git-pivotal-tracker-integration.svg?branch=master)](https://travis-ci.org/nebhale/git-pivotal-tracker-integration)
4
+ [![Gem Version](https://badge.fury.io/rb/git-pivotal-tracker-integration.png)](http://badge.fury.io/rb/git-pivotal-tracker-integration)
5
+ [![Dependency Status](https://gemnasium.com/nebhale/git-pivotal-tracker-integration.svg)](https://gemnasium.com/nebhale/git-pivotal-tracker-integration)
6
+ [![Code Climate](https://codeclimate.com/github/nebhale/git-pivotal-tracker-integration.svg)](https://codeclimate.com/github/nebhale/git-pivotal-tracker-integration)
7
+
8
+
9
+ `v2gpti` is a mod of `git-pivotal-tracker-integration`. It provides a set of additional Git commands to help developers when working with [Pivotal Tracker][pivotal-tracker].
10
+
11
+ [pivotal-tracker]: http://www.pivotaltracker.com
12
+
13
+
14
+ ## Installation
15
+ `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_.
16
+
17
+ In order to install it, do the following:
18
+
19
+ 1. Check your Ruby version with `ruby -v`. It should be at least **Ruby 1.8.7**
20
+ 2. Check your git version with `git --version`. It should be at least **Git 1.8.2.1** (It is tested against Rubies _1.8.7_, _1.9.3_, and _2.0.0_.)
21
+ 3. Install with the following... (This will require admin rights, so you may need sudo.)
22
+ ```plain
23
+ $ gem install v2gpti
24
+ ```
25
+
26
+
27
+ ## Usage
28
+ `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:
29
+
30
+ ```plain
31
+ $ git start # Creates branch and starts story
32
+ $ git commit ...
33
+ $ git commit ... # Your existing development process
34
+ $ git commit ...
35
+ $ git finish # Merges and destroys branch, pushes to origin, and finishes story
36
+ ```
37
+
38
+
39
+ ## Configuration
40
+
41
+ ### Git Client
42
+ 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.
43
+
44
+ | Name | Description
45
+ | ---- | -----------
46
+ | `pivotal.api-token` | Your Pivotal Tracker API Token. This can be found in [your profile][profile] and should be set globally.
47
+ | `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.
48
+
49
+ [profile]: https://www.pivotaltracker.com/profile
50
+
51
+
52
+ ### Git Server
53
+ 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.
54
+
55
+ [integration]: https://www.pivotaltracker.com/help/integrations?version=v3#scm
56
+
57
+
58
+ ## Commands
59
+
60
+ ### `git start [ type | story-id ]`
61
+ 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.
62
+
63
+ ```plain
64
+ $ git start 12345678
65
+ ```
66
+
67
+ 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.
68
+
69
+ ```plain
70
+ $ git start feature
71
+
72
+ 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit
73
+ 2. Pellentesque sit amet ante eu tortor rutrum pharetra
74
+ 3. Ut at purus dolor, vel ultricies metus
75
+ 4. Duis egestas elit et leo ultrices non fringilla ante facilisis
76
+ 5. Ut ut nunc neque, quis auctor mauris
77
+ Choose story to start:
78
+ ```
79
+
80
+ 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.
81
+
82
+ ```plain
83
+ $ git start
84
+
85
+ 1. FEATURE Donec convallis leo mi, dictum ornare sem
86
+ 2. CHORE Sed et magna lectus, sed auctor purus
87
+ 3. FEATURE In a nunc et enim tincidunt interdum vitae et risus
88
+ 4. FEATURE Fusce facilisis varius lorem, at tristique sem faucibus in
89
+ 5. BUG Donec iaculis ante neque, ut tempus augue
90
+ Choose story to start:
91
+ ```
92
+
93
+ Once a story has been selected by one of the three methods, the command then prompts for the name of the branch to create.
94
+
95
+ ```plain
96
+ $ git start 12345678
97
+ Title: Lorem ipsum dolor sit amet, consectetur adipiscing elitattributes
98
+ Description: Ut consequat sapien ut erat volutpat egestas. Integer venenatis lacinia facilisis.
99
+
100
+ Enter branch name (12345678-<branch-name>):
101
+ ```
102
+
103
+ 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.
104
+
105
+ 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.
106
+
107
+ ```plain
108
+
109
+ [#12345678]
110
+ # Please enter the commit message for your changes. Lines starting
111
+ # with '#' will be ignored, and an empty message aborts the commit.
112
+ # On branch 12345678-lorem-ipsum
113
+ # Changes to be committed:
114
+ # (use "git reset HEAD <file>..." to unstage)
115
+ #
116
+ # new file: dolor.txt
117
+ #
118
+ ```
119
+
120
+ ### `git finish [--no-complete]`
121
+ This command finishes a story by merging and cleaning up its branch and then pushing the changes to a remote server. This command can be run in two ways. First it can be run without the `--no-complete` option.
122
+
123
+ ```plain
124
+ $ git finish
125
+ Checking for trivial merge from 12345678-lorem-ipsum to master... OK
126
+ Merging 12345678-lorem-ipsum to master... OK
127
+ Deleting 12345678-lorem-ipsum... OK
128
+ Pushing to origin... OK
129
+ ```
130
+
131
+ 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
132
+
133
+ 1. The local repository must be up to date with the remote repository (e.g. `origin`)
134
+ 2. The local merge target branch (e.g. `master`) must be up to date with the remote merge target branch (e.g. `origin/master`)
135
+ 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`)
136
+
137
+ If all of these conditions are met, the development branch will be merged into the target branch with a message of:
138
+
139
+ ```plain
140
+ Merge 12345678-lorem-ipsum to master
141
+
142
+ [Completes #12345678]
143
+ ```
144
+
145
+ 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.
146
+
147
+ ```plain
148
+ Merge 12345678-lorem-ipsum to master
149
+
150
+ [#12345678]
151
+ ```
152
+
153
+ After merging, the development branch is deleted and the changes are pushed to the remote repository.
154
+
155
+ ### `git release [story-id]`
156
+ 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.
157
+
158
+ ```plain
159
+ $ git release 12345678
160
+ ```
161
+ 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).
162
+
163
+ ```plain
164
+ $ git release
165
+ Title: Lorem ipsum dolor sit amet, consectetur adipiscing elitattributes
166
+ ```
167
+
168
+ Once a story has been selected by one of the two methods, the command then prompts for the release version and next development version.
169
+
170
+ ```plain
171
+ $ git release
172
+ Title: Lorem ipsum dolor sit amet, consectetur adipiscing elitattributes
173
+
174
+ Enter release version (current: 1.0.0.BUILD-SNAPSHOT): 1.0.0.M1
175
+ Enter next development version (current: 1.0.0.BUILD-SNAPSHOT): 1.1.0.BUILD-SNAPSHOT
176
+ Creating tag v1.0.0.M1... OK
177
+ Pushing to origin... OK
178
+ ```
179
+
180
+ 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.
181
+
182
+ 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.
183
+
184
+ * 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]