git-message 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9dda82c6d4d1a2b2cef9f5430aa92e1c1602f76b
4
- data.tar.gz: 2a7c5ff8e7f9b5bc8c972e6e5022cf604de4b4cc
3
+ metadata.gz: 6d41304249679c3024e12d9a1155db63919a999b
4
+ data.tar.gz: 122bcb3e21cd5dd478b13c7c371c2e7312df1a40
5
5
  SHA512:
6
- metadata.gz: b5d045bd0685caa2a6e0220d069f0aea99ed99b3f57f92f97ce190ee2d21f54bfa99766639bde23f03142090dd0006bef3fbb9a602167634b632cfbb1cadd16a
7
- data.tar.gz: 8c3f9576f9b742f89825d735fcbc2ba7633114a1d4acc509f78a364dcf73f2d2b7dfff6e8be57781eb15d782de2d94667c84dc4c513f0c35b10b0e3c5f1b6921
6
+ metadata.gz: c08ff828318cde8425bc22ea80ee75f247ad3d34270681385fb32a6f27891e494d2c878f20885d50604bfbf3d248059602e43704511ab21281d1286dcae9c035
7
+ data.tar.gz: 9893e00936ed2f677565ba3fdef633733df4bf98f9d47d38de396c0ecfb4de03e2bee0412abe722c279470b7a3763c1decf07b9cfba5d8a646613b337977140f
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at thewingofthesky@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in git-message.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 thewingofthesky
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Git::Message
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/git/message`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'git-message'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install git-message
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/git-message. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "git/message"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -1,42 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'optparse'
4
-
5
- def showTypeOption
6
-
7
- puts <<EOF
8
-
9
- 1 feat: 新功能(feature)
10
- 2 fix: 修补bug
11
- 3 docs: 文档(documentation)
12
- 4 style: 格式(不影响代码运行的变动)
13
- 5 refactor:重构(即不是新增功能,也不是修改bug的代码变动)
14
- 6 test: 增加测试
15
- 7 chore: 构建过程或辅助工具的变动
16
- 8 debug: 调试的变更(仅作调试使用)
17
-
18
- Enter the type number of your commit:
19
- EOF
20
-
21
- end
22
-
23
- def showScopeNote
24
-
25
- puts <<EOF
26
-
27
- Enter the scope of your commit:
28
- EOF
29
-
30
- end
31
-
32
- def showMessage
33
-
34
- puts <<EOF
35
-
36
- Enter the subject of your commit:
37
- EOF
38
-
39
- end
4
+ require 'git/message/version'
5
+ require 'git/message'
40
6
 
41
7
  def getType (num)
42
8
 
@@ -50,7 +16,7 @@ def getType (num)
50
16
  when '4'
51
17
  "style"
52
18
  when '5'
53
- "refactor"
19
+ "refactor"
54
20
  when '6'
55
21
  "test"
56
22
  when '7'
@@ -65,17 +31,14 @@ end
65
31
 
66
32
  options = {}
67
33
  option_parser = OptionParser.new do |opts|
68
- # 这里是这个命令行工具的帮助信息
69
- opts.banner = 'here is help messages of git-message.'
70
-
71
- # Option 作为switch,不带argument,用于将 switch 设置成 true false
72
- options[:switch] = false
73
- # 下面第一项是 Short option(没有可以直接在引号间留空),第二项是 Long option,第三项是对 Option 的描述
74
- opts.on('-v', '--version') do
75
- # 这个部分就是使用这个Option后执行的代码
76
- puts 'v0.1.1'
34
+ # 这里是这个命令行工具的帮助信息
35
+ opts.banner = 'here is help messages of git-message.'
36
+
37
+ # 下面第一项是 Short option(没有可以直接在引号间留空),第二项是 Long option,第三项是对 Option 的描述
38
+ opts.on('-v', '--version', 'version of git-message') do
39
+ puts Git::Message::VERSION
77
40
  exit
78
- end
41
+ end
79
42
 
80
43
  # # Option 作为 flag,带argument,用于将argument作为数值解析,比如"name"信息
81
44
  # #下面的“value”就是用户使用时输入的argument
@@ -89,7 +52,7 @@ option_parser = OptionParser.new do |opts|
89
52
  # end
90
53
  end.parse!
91
54
 
92
- showTypeOption
55
+ Git::Message::showTypeOption
93
56
 
94
57
  while (1)
95
58
 
@@ -97,10 +60,10 @@ while (1)
97
60
  options[:type] = getType num
98
61
 
99
62
  break
100
-
63
+
101
64
  end
102
65
 
103
- showScopeNote
66
+ Git::Message::showScopeNote
104
67
 
105
68
  while (1)
106
69
 
@@ -108,10 +71,10 @@ while (1)
108
71
  options[:scope] = scope
109
72
 
110
73
  break
111
-
74
+
112
75
  end
113
76
 
114
- showMessage
77
+ Git::Message::showMessage
115
78
 
116
79
  while (1)
117
80
 
@@ -119,7 +82,7 @@ while (1)
119
82
  options[:subject] = subject
120
83
 
121
84
  break
122
-
85
+
123
86
  end
124
87
 
125
88
  commitMessage = options[:type] + '[' + options[:scope] + ']' + ':' + options[:subject]
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'git/message/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "git-message"
8
+ spec.version = Git::Message::VERSION
9
+ spec.authors = ["Wingzki"]
10
+ spec.email = ["thewingofthesky@gmail.com"]
11
+
12
+ spec.summary = %q{A plugin for git to creat a commit message}
13
+ spec.description = %q{A plugin for git to creat a commit message}
14
+ spec.homepage = "https://github.com/Wingzki"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.11"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ end
@@ -0,0 +1,38 @@
1
+ require "git/message/version"
2
+
3
+ module Git
4
+ module Message
5
+
6
+ def Message.showTypeOption
7
+
8
+ puts <<EOF
9
+
10
+ 1 feat: 新功能(feature)
11
+ 2 fix: 修补bug
12
+ 3 docs: 文档(documentation)
13
+ 4 style: 格式(不影响代码运行的变动)
14
+ 5 refactor:重构(即不是新增功能,也不是修改bug的代码变动)
15
+ 6 test: 增加测试
16
+ 7 chore: 构建过程或辅助工具的变动
17
+ 8 debug: 调试的变更(仅作调试使用)
18
+
19
+ EOF
20
+
21
+ print 'Enter the type number of your commit:'
22
+
23
+ end
24
+
25
+ def Message.showScopeNote
26
+
27
+ print 'Enter the scope of your commit:'
28
+
29
+ end
30
+
31
+ def Message.showMessage
32
+
33
+ print 'Enter the subject of your commit:'
34
+
35
+ end
36
+
37
+ end
38
+ end
@@ -0,0 +1,5 @@
1
+ module Git
2
+ module Message
3
+ VERSION = "0.1.5"
4
+ end
5
+ end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-message
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wingzki
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2016-01-28 00:00:00.000000000 Z
12
12
  dependencies:
@@ -46,7 +46,18 @@ executables:
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
- - bin/git-message
49
+ - ".gitignore"
50
+ - CODE_OF_CONDUCT.md
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - bin/console
56
+ - bin/setup
57
+ - exe/git-message
58
+ - git-message.gemspec
59
+ - lib/git/message.rb
60
+ - lib/git/message/version.rb
50
61
  homepage: https://github.com/Wingzki
51
62
  licenses:
52
63
  - MIT