gemsmith 3.1.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +2 -2
- data.tar.gz.sig +0 -0
- data/LICENSE.md +1 -1
- data/README.md +13 -14
- data/lib/gemsmith/templates/%gem_name%/CONTRIBUTING.md.tt +25 -36
- data/lib/gemsmith/templates/%gem_name%/README.md.tt +5 -7
- data/lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt +1 -0
- data/lib/gemsmith/version.rb +1 -1
- metadata +21 -21
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc414b359bc4db3a5c713f4a7bc2e9286951db0a
|
4
|
+
data.tar.gz: 9c59f1859d8bff716d9f32676fd91b268334249d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bea122b13b78382f89fe16d3f69d0dda0e2b700be6fd0ae1648526ec5b3ad7b1984c52afeba6833e4db8bf9b493cc2085ed253713ccc6f54ebe986d9c3730366
|
7
|
+
data.tar.gz: 7d1c3e588a18fdb3564cc4e94bdfa9f2c0585270f61fb84f067a7694d9a94a77951152433e76ae69052a39ea9eade2e09c577373c848011545b980a839f37834
|
checksums.yaml.gz.sig
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
:���'�����/�8 �{pxO�H���n;�F����/ꉺ ����5�&y����E��:pɶ�6䕜��5��ѵq]��.��Q����I���Ɏ��%տ���)M��Rv�+Y�%��
|
2
|
+
���iG�r� ��o|W���=׀��Y�n�5ٷ�3����h�����f[+@��r������m��g;�ə�� ��aİ�^���R)��m
|
data.tar.gz.sig
CHANGED
Binary file
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -2,9 +2,10 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/gemsmith.png)](http://badge.fury.io/rb/gemsmith)
|
4
4
|
[![Code Climate GPA](https://codeclimate.com/github/bkuhlmann/gemsmith.png)](https://codeclimate.com/github/bkuhlmann/gemsmith)
|
5
|
+
[![Code Climate Coverage](https://codeclimate.com/github/bkuhlmann/gemsmith/coverage.png)](https://codeclimate.com/github/bkuhlmann/gemsmith)
|
5
6
|
[![Gemnasium Status](https://gemnasium.com/bkuhlmann/gemsmith.png)](https://gemnasium.com/bkuhlmann/gemsmith)
|
6
7
|
[![Travis CI Status](https://secure.travis-ci.org/bkuhlmann/gemsmith.png)](http://travis-ci.org/bkuhlmann/gemsmith)
|
7
|
-
[![
|
8
|
+
[![Gittip](http://img.shields.io/gittip/bkuhlmann.svg)](https://www.gittip.com/bkuhlmann)
|
8
9
|
|
9
10
|
Gemsmith allows you to easily craft new gems via the command line with custom settings (if desired). If you are
|
10
11
|
a fan of [Bundler](https://github.com/carlhuda/bundler), then you'll appreciate the additional capabilities of this
|
@@ -25,7 +26,7 @@ gem. Gemsmith is essentially an enhanced version of Bundler's gem building capab
|
|
25
26
|
* Supports [Coveralls](https://coveralls.io).
|
26
27
|
* Provides the ability to open the source code of any gem within your favorite editor.
|
27
28
|
* Provides the ability to read the documentation of any gem within your default browser.
|
28
|
-
* Adds commonly needed README, CHANGELOG, CONTRIBUTING, LICENSE, etc. template files.
|
29
|
+
* Adds commonly needed README, [CHANGELOG](CHANGELOG.md), [CONTRIBUTING](CONTRIBUTING.md), [LICENSE](LICENSE.md), etc. template files.
|
29
30
|
|
30
31
|
# Requirements
|
31
32
|
|
@@ -41,7 +42,7 @@ gem. Gemsmith is essentially an enhanced version of Bundler's gem building capab
|
|
41
42
|
|
42
43
|
For a secure install, type the following from the command line (recommended):
|
43
44
|
|
44
|
-
gem cert --add <(curl -Ls http://www.
|
45
|
+
gem cert --add <(curl -Ls http://www.alchemists.io/gem-public.pem)
|
45
46
|
gem install gemsmith --trust-policy MediumSecurity
|
46
47
|
|
47
48
|
NOTE: A HighSecurity trust policy would be best but MediumSecurity enables signed gem verification while
|
@@ -60,8 +61,8 @@ You can configure common settings for future gem builds by creating the followin
|
|
60
61
|
---
|
61
62
|
:author_name: Brooke Kuhlmann
|
62
63
|
:author_email: brooke@redalchemist.com
|
63
|
-
:author_url: http://www.
|
64
|
-
:company_name:
|
64
|
+
:author_url: http://www.alchemists.io
|
65
|
+
:company_name: Alchemists
|
65
66
|
|
66
67
|
If no options are configured, then the defaults are as follows:
|
67
68
|
|
@@ -118,11 +119,9 @@ Once a gem skeleton has been created, the following tasks are available within t
|
|
118
119
|
|
119
120
|
# Tests
|
120
121
|
|
121
|
-
To test,
|
122
|
+
To test, run:
|
122
123
|
|
123
|
-
|
124
|
-
0. bundle install
|
125
|
-
0. bundle exec rspec spec
|
124
|
+
bundle exec rspec spec
|
126
125
|
|
127
126
|
# Security
|
128
127
|
|
@@ -184,17 +183,17 @@ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
|
|
184
183
|
|
185
184
|
# Contributions
|
186
185
|
|
187
|
-
Read CONTRIBUTING for details.
|
186
|
+
Read [CONTRIBUTING](CONTRIBUTING.md) for details.
|
188
187
|
|
189
188
|
# Credits
|
190
189
|
|
191
|
-
Developed by [Brooke Kuhlmann](http://www.
|
190
|
+
Developed by [Brooke Kuhlmann](http://www.alchemists.io) at [Alchemists](http://www.alchemists.io).
|
192
191
|
|
193
192
|
# License
|
194
193
|
|
195
|
-
Copyright (c) 2011 [
|
196
|
-
Read the LICENSE for details.
|
194
|
+
Copyright (c) 2011 [Alchemists](http://www.alchemists.io).
|
195
|
+
Read the [LICENSE](LICENSE.md) for details.
|
197
196
|
|
198
197
|
# History
|
199
198
|
|
200
|
-
Read the CHANGELOG for details.
|
199
|
+
Read the [CHANGELOG](CHANGELOG.md) for details.
|
@@ -1,46 +1,35 @@
|
|
1
1
|
# Overview
|
2
2
|
|
3
|
-
Thanks for taking an interest in this open source project. Your support
|
4
|
-
|
5
|
-
in order to contribute back.
|
3
|
+
Thanks for taking an interest in this open source project. Your support and involvement is greatly appreciated. The
|
4
|
+
following details what you need to know in order to contribute.
|
6
5
|
|
7
6
|
# Requirements
|
8
7
|
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
1. Submit an issue via the GitHub Issues tab (assuming one does not already exist).
|
33
|
-
2. Clearly describe the issue (including steps to reproduce).
|
34
|
-
3. Specify your enviroment setup (OS, browser, language, etc. with version info).
|
35
|
-
4. Provide a stack dump (if possible).
|
36
|
-
5. Explain any additional details that might help diagnose the problem quickly.
|
8
|
+
* Follow these [Basic Programming Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/basic.md).
|
9
|
+
* Follow these [Code Review Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/code_reviews.md).
|
10
|
+
* Follow these [Git Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/git.md).
|
11
|
+
* Follow these [Bash Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/bash.md).
|
12
|
+
* Follow these [CSS Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/css.md).
|
13
|
+
* Follow these [Ruby Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/ruby.md).
|
14
|
+
|
15
|
+
# Contributing Code
|
16
|
+
|
17
|
+
0. Read the project README thoroughly before starting.
|
18
|
+
0. Fork the master branch of the repository.
|
19
|
+
0. Ensure there are no setup, usage, and/or test issues (again, follow the README).
|
20
|
+
0. Add tests for new functionality (refactoring and documentation changes can be excluded).
|
21
|
+
0. Ensure all tests pass.
|
22
|
+
0. Push your feature branch and submit a pull request.
|
23
|
+
|
24
|
+
# Submitting Issues
|
25
|
+
|
26
|
+
0. Submit an issue via the GitHub Issues tab (assuming one does not already exist).
|
27
|
+
0. Clearly describe the issue (including steps to reproduce).
|
28
|
+
0. Specify your enviroment setup (OS, browser, language, etc. with version info).
|
29
|
+
0. Provide a stack dump (if possible).
|
30
|
+
0. Explain any additional details that might help diagnose the problem quickly.
|
37
31
|
|
38
32
|
# Feedback
|
39
33
|
|
40
34
|
Expect a response with one to three business days (normally responses are faster than mentioned).
|
41
35
|
Changes, alternatives, and/or improvements might be suggested upon review.
|
42
|
-
|
43
|
-
# Resources
|
44
|
-
|
45
|
-
* [GitHub Documentation](http://help.github.com)
|
46
|
-
* [GitHub Pull Request Documentation](http://help.github.com/send-pull-requests)
|
@@ -47,11 +47,9 @@ Add the following to your Gemfile:
|
|
47
47
|
<%- if config[:rspec] -%>
|
48
48
|
# Tests
|
49
49
|
|
50
|
-
To test,
|
50
|
+
To test, run:
|
51
51
|
|
52
|
-
|
53
|
-
0. bundle install
|
54
|
-
0. bundle exec rspec spec
|
52
|
+
bundle exec rspec spec
|
55
53
|
<%- end -%>
|
56
54
|
|
57
55
|
# Versioning
|
@@ -64,7 +62,7 @@ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
|
|
64
62
|
|
65
63
|
# Contributions
|
66
64
|
|
67
|
-
Read CONTRIBUTING for details.
|
65
|
+
Read [CONTRIBUTING](CONTRIBUTING.md) for details.
|
68
66
|
|
69
67
|
# Credits
|
70
68
|
|
@@ -73,9 +71,9 @@ Developed by [<%= config[:author_name] %>](<%= config[:author_url] %>) at [<%= c
|
|
73
71
|
# License
|
74
72
|
|
75
73
|
Copyright (c) <%= config[:year] %> [<%= config[:company_name] %>](<%= config[:company_url] %>).
|
76
|
-
Read the LICENSE for details.
|
74
|
+
Read the [LICENSE](LICENSE.md) for details.
|
77
75
|
|
78
76
|
# History
|
79
77
|
|
80
|
-
Read the CHANGELOG for details.
|
78
|
+
Read the [CHANGELOG](CHANGELOG.md) for details.
|
81
79
|
Built with [Gemsmith](https://github.com/bkuhlmann/gemsmith).
|
data/lib/gemsmith/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemsmith
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
@@ -12,25 +12,25 @@ cert_chain:
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
13
|
MIIDhTCCAm2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQ8wDQYDVQQDDAZicm9v
|
14
14
|
a2UxHDAaBgoJkiaJk/IsZAEZFgxyZWRhbGNoZW1pc3QxEzARBgoJkiaJk/IsZAEZ
|
15
|
-
|
15
|
+
FgNjb20wHhcNMTQwNzA0MDIzNDA4WhcNMTUwNzA0MDIzNDA4WjBEMQ8wDQYDVQQD
|
16
16
|
DAZicm9va2UxHDAaBgoJkiaJk/IsZAEZFgxyZWRhbGNoZW1pc3QxEzARBgoJkiaJ
|
17
|
-
k/
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
17
|
+
k/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCaHJaV
|
18
|
+
JKqaafmBJCnYo9NCe35cK0RaxJMUdzF1SXQjQ+Z1wqfjHb36BgVymGnRficJ8WFc
|
19
|
+
ek6Bo2OIgijt+FWBV6OPQfCMLkNWB+2zgjnSqaasQyxmZs/ZRiRF5TgsAXFwdg3D
|
20
|
+
Oo2JaY39R/gPc30dCmYMYNjYgYBW3R2zGc4la3UsMGWk8TUfS9/pZSWKAmMV1LN9
|
21
|
+
KefGthgkwbbJfX7WBzViXR1h2OTgYj0AmbI4gMjztuOj/rCQJ6ejf1/xPVZzvJ3U
|
22
|
+
Z5FhSMK2E0JERJxufjVDFRnLdPECy+BwqQXwQAYR3WO13qYBwsvxiwpdLWvu/c7y
|
23
|
+
yXcXoLjLPm6wgUtLAgMBAAGjgYEwfzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAd
|
24
|
+
BgNVHQ4EFgQUVDqKhvFvxnoA5rKLdhZjZtXe7UAwIgYDVR0RBBswGYEXYnJvb2tl
|
25
25
|
QHJlZGFsY2hlbWlzdC5jb20wIgYDVR0SBBswGYEXYnJvb2tlQHJlZGFsY2hlbWlz
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
26
|
+
dC5jb20wDQYJKoZIhvcNAQEFBQADggEBAEnc1OmBwCt5taZdQXVUA+SgZvNs7hxE
|
27
|
+
Q8i8+6wkvVxR0O7w6RqyxCk49G6frffq+UccTigoBKXGZAbH7QUteGQ+/71pX/oY
|
28
|
+
R06S9eLxgkFCyDwijCO0cWHtdsnGkYlDB/VbPQyeGGScVezkhriXt48f2pCd2pHe
|
29
|
+
wApukaugK6AT8OisVXWNI02DgH0a2hBS8kPdsydXOBmuiGxrvzFmaKwFwlIVngGO
|
30
|
+
fMlZDUGx3lQarp/vPjK+6XH7DLXjBEKqeIGBIpLthYUvDxJRp23C+T3liGSL32vg
|
31
|
+
mSpxxwmK95GDFuEy2mNPaxnazdkw8c+7DbrSpzd/CnNZkRgitxOavs8=
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date: 2014-
|
33
|
+
date: 2014-07-07 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: pry-byebug
|
@@ -80,14 +80,14 @@ dependencies:
|
|
80
80
|
requirements:
|
81
81
|
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: '1.
|
83
|
+
version: '1.6'
|
84
84
|
type: :runtime
|
85
85
|
prerelease: false
|
86
86
|
version_requirements: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
88
|
- - "~>"
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: '1.
|
90
|
+
version: '1.6'
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: rake
|
93
93
|
requirement: !ruby/object:Gem::Requirement
|
@@ -187,7 +187,7 @@ dependencies:
|
|
187
187
|
- !ruby/object:Gem::Version
|
188
188
|
version: '0'
|
189
189
|
- !ruby/object:Gem::Dependency
|
190
|
-
name:
|
190
|
+
name: codeclimate-test-reporter
|
191
191
|
requirement: !ruby/object:Gem::Requirement
|
192
192
|
requirements:
|
193
193
|
- - ">="
|
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
version: '0'
|
277
277
|
requirements: []
|
278
278
|
rubyforge_project:
|
279
|
-
rubygems_version: 2.
|
279
|
+
rubygems_version: 2.3.0
|
280
280
|
signing_key:
|
281
281
|
specification_version: 4
|
282
282
|
summary: Ruby gem skeleton generation for the professional gemsmith.
|
metadata.gz.sig
CHANGED
Binary file
|