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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 46fb87f97117b8e22b3d94589c758871916cf3cb
4
- data.tar.gz: 724e1ebf33f2a705fdd4365c57e3f01ac87818b9
3
+ metadata.gz: bc414b359bc4db3a5c713f4a7bc2e9286951db0a
4
+ data.tar.gz: 9c59f1859d8bff716d9f32676fd91b268334249d
5
5
  SHA512:
6
- metadata.gz: c45ece477e3ea0cd92fc3732cf44886f754259c4cdf83357213fd61290a1b64a1be24bb1e29f25d3682fd829e57f9e28426a300d95ab22746aa97a01b504e6b3
7
- data.tar.gz: 7f04fbb0a6797ce0e8b4c914deea9a57e1623e2cd07767e73e8874da4355f2e6c440a4d33a94a4ed0b8660cef5a7449e5aa832f1e9db1852b2f5bba9f4fcae9b
6
+ metadata.gz: bea122b13b78382f89fe16d3f69d0dda0e2b700be6fd0ae1648526ec5b3ad7b1984c52afeba6833e4db8bf9b493cc2085ed253713ccc6f54ebe986d9c3730366
7
+ data.tar.gz: 7d1c3e588a18fdb3564cc4e94bdfa9f2c0585270f61fb84f067a7694d9a94a77951152433e76ae69052a39ea9eade2e09c577373c848011545b980a839f37834
@@ -1,2 +1,2 @@
1
- �žY|UUk���)����T�,_e>�N�/i\� �B���[Tӿ�읜i�:�v�۱A�oQ�E�%P� z�$t�]kyeG��r�F�FO!w� 8��ޫ�tхo�D:k���YTow(��8<<"��fd��-���%l�a�Ul)��ͻY�c�w�������%ZQ��d(�����B��;�+iޞ�Γ��u��u���9; Q���9��,����K�����+��н�����
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2011 [Red Alchemist](http://www.redalchemist.com).
1
+ Copyright (c) 2011 [Alchemists](http://www.alchemists.io).
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
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
- [![Coverage Status](https://coveralls.io/repos/bkuhlmann/gemsmith/badge.png)](https://coveralls.io/r/bkuhlmann/gemsmith)
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.redalchemist.com/gem-public.pem)
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.redalchemist.com
64
- :company_name: Red Alchemist
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, do the following:
122
+ To test, run:
122
123
 
123
- 0. cd to the gem root.
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.redalchemist.com) at [Red Alchemist](http://www.redalchemist.com).
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 [Red Alchemist](http://www.redalchemist.com).
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
- and involvement is greatly appreciated. The following details what you need to know
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
- * Document the code - Explain the intent/purpose along with usage examples (where appropriate).
10
- * Write tests that demonstration passing and failing requirements.
11
- * Use two spaces, no tabs for indentation.
12
- * Remove trailing whitespace.
13
- * Remove spaces from blank lines.
14
- * Write methods as "example_method example_params", not "example_method(example_params)" for one-liners.
15
- * Write methods as "outer_method inner_method(example_params)" for nested method calls.
16
- * Use &&/|| instead of and/or where appropriate.
17
- * Define a = b instead of a=b.
18
- * In the end, follow the conventions found in the source code.
19
- * Use common sense, keep it simple.
20
-
21
- # Contributing Code (awesome option)
22
-
23
- 1. Fork the repository (master branch).
24
- 2. Ensure there are no setup issues (see README for details).
25
- 3. Run the tests (see README for details).
26
- 4. Add tests for new functionality (refactoring and documentation changes can be excluded).
27
- 5. Ensure all tests pass.
28
- 6. Push your fork and submit a pull request.
29
-
30
- # Contributing Issues (lazy, but sometimes necessary, option)
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, do the following:
50
+ To test, run:
51
51
 
52
- 0. cd to the gem root.
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).
@@ -24,6 +24,7 @@ end
24
24
  <%- end -%>
25
25
 
26
26
  RSpec.configure do |config|
27
+ config.expect_with(:rspec) { |expectation| expectation.syntax = :expect }
27
28
  config.run_all_when_everything_filtered = true
28
29
  config.filter_run focus: true
29
30
 
@@ -1,3 +1,3 @@
1
1
  module Gemsmith
2
- VERSION = "3.1.0"
2
+ VERSION = "3.2.0"
3
3
  end
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.1.0
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
- FgNjb20wHhcNMTMwNjI1MDEzOTUyWhcNMTQwNjI1MDEzOTUyWjBEMQ8wDQYDVQQD
15
+ FgNjb20wHhcNMTQwNzA0MDIzNDA4WhcNMTUwNzA0MDIzNDA4WjBEMQ8wDQYDVQQD
16
16
  DAZicm9va2UxHDAaBgoJkiaJk/IsZAEZFgxyZWRhbGNoZW1pc3QxEzARBgoJkiaJ
17
- k/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCoICuy
18
- DEfASTaScwJxS+wuGY729rx9X6KWktpiee5UT0hSZ8RBum1PU5pfgXdZcZ9rOiGC
19
- 66qjTN7I08FWpnoz/11M9Wcqd5k1aJXnXeCKRjWmgrnqY2ecbM6CR2OhSIe63l1I
20
- wNg9ZTx6h2S8AcdJa2cs1kGO0/NZ5PqKn8ZSFUfByJIIP6ygas7MFIh9EuDs+bTU
21
- OVrOAtfC8rZKZ7iFhPwMeRfn4PnR/q0xfK6UXjjr7ES67/qjAbioZaNfubbe+bc7
22
- aRcWYGTG8cFuM0PnX4dr2p3ZRXmOYwt+dcZxRZxG099v4IsC0hwttgES64BfDiQc
23
- PrqZFq63Lzc/j+eBAgMBAAGjgYEwfzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAd
24
- BgNVHQ4EFgQU43tA2HIdqx0YsONzs1fL6z8l4WQwIgYDVR0RBBswGYEXYnJvb2tl
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
- dC5jb20wDQYJKoZIhvcNAQEFBQADggEBADZi/zTFe3ZJ87QbGmqIadqGeqy27/KZ
27
- tIO5rX7kPoFwIdFyW8XekozEPaWDpwRQ/E0LVz1f/7U6VEmp30tpOgXqHS7GkAlz
28
- Q1bZjlDMkosXIYd737LfjaQB5YqzoUMWdbPmX5oKXmQMy416GrcLZXW22u5HtrHN
29
- AT6fTCYrKaY9LWcugrGU7puOo0itBjLUC0YxtBnDGV8h0Fop9DHQ6gATPweQ7R1j
30
- SJpzzzZ8gO6BKn4fhd+ENNQ333Qy3nuNk07TVIaNnlgeHhowUDuD9T7Z8Lka0pt3
31
- 4PteiTppsf0SSVAM9zSO5IuFngXMRwWgvjOfXE70f43RDuUVTCSyylc=
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-04-16 00:00:00.000000000 Z
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.5'
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.5'
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: coveralls
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.2.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