fastlane-plugin-create_merge_request 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e886c815ba35978540802749f13d869e1fec2a0856790defdc5eb5f1a73b671a
4
- data.tar.gz: 1841210f27a1df39c212e77a571957cf969571c9e8654737f0039bfce42dfc8e
3
+ metadata.gz: 9e0fc39e482eae94822ea6a22348f6c1e70ff47f5299d42c7c0e63d76dcda3c5
4
+ data.tar.gz: 611c8f259a5cb054565916acdea2776e53b80630e1d2202f3527f0e78dceff3f
5
5
  SHA512:
6
- metadata.gz: 54fb58eddd4819096c1a6ba83c3c4815ac17095489c0507d9ff3dd7b7a537f7c1eb9a3214b833c73c3f034c819f296d8aebd45cd9dbb63fb76c94578743ebb7a
7
- data.tar.gz: 16ddcd0ae688af5e42bd3f7ed8a4b9d989abce4608a7e8625c25aa15353dd7b2a81ed7fa62a3f29b689d05710d5bb45d2e355b8ff4a171e6586304fad8214335
6
+ metadata.gz: f862cedf71707d05624954c8336eed02cca3481bc09caa661b9d810cc1336b96698eb676fe5758577413e58ef613eb5f29102f461d97400ff5f2437ac120febb
7
+ data.tar.gz: 3e53d08dcd2ad062277c65867409f636d5a5ece3e4eed4e51c747ba9335c2fb9dd03465c69870d1486eb44cc2e0c7698fe31320399dadf3279e0134bb5e2c672
data/README.md CHANGED
@@ -1,38 +1,39 @@
1
- # create_merge_request plugin
1
+ # create_merge_request `fastlane` plugin
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-create_merge_request)
4
4
 
5
- ## Getting Started
6
-
7
- This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-create_merge_request`, add it to your project by running:
8
-
9
- ```bash
10
- fastlane add_plugin create_merge_request
11
- ```
12
5
 
13
6
  ## About create_merge_request
14
7
 
15
- GitLab Marge Request
8
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin.
16
9
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
18
-
19
- ## Example
10
+ This will create a new merge request on GitLab.
20
11
 
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
12
+ ## Getting Started
22
13
 
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
14
+ To get started with `fastlane-plugin-create_merge_request`, add it to your project by running:
24
15
 
25
- ## Run tests for this plugin
16
+ ```bash
17
+ fastlane add_plugin create_merge_request
18
+ ```
26
19
 
27
- To run both the tests, and code style validation, run
28
20
 
29
- ```
30
- rake
31
- ```
21
+ ## Example
32
22
 
33
- To automatically fix many of the styling issues, use
34
- ```
35
- rubocop -a
23
+ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins`.
24
+
25
+ ```ruby
26
+ create_merge_request(
27
+ api_token: "secret",
28
+ project_id: "1000", # Gitlab Project ID
29
+ title: "Amazing new feature",
30
+ body: "Please pull this in!", # optional
31
+ source: "branch_name", # optional Name of the branch where your changes are implemented (defaults to the current branch name)
32
+ target: "develop", # optional Name of the branch you want your changes pulled into (defaults to `master`)
33
+ assignee_id: "1773700", # optional Assignee user ID
34
+ labels: "bot", # optional Labels for MR as a comma-separated list
35
+ api_url: "http://yourdomain/api/v4" # optional, for GitLab self-host, defaults to "https://gitlab.com/api/v4"
36
+ )
36
37
  ```
37
38
 
38
39
  ## Issues and Feedback
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module CreateMergeRequest
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-create_merge_request
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
  - masashi mizuno
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-02 00:00:00.000000000 Z
11
+ date: 2019-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -169,5 +169,5 @@ requirements: []
169
169
  rubygems_version: 3.0.4
170
170
  signing_key:
171
171
  specification_version: 4
172
- summary: GitLab Marge Request
172
+ summary: This will create a new merge request on GitLab.
173
173
  test_files: []