spdx 1.3.1 → 1.3.2

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: 3722d9a95644e5dacec325e91b865e3152ca8122
4
- data.tar.gz: 27de120fd9e07e549281a69c643ec4e5514dc8d6
3
+ metadata.gz: f5e9db777ba544a7b8d7b860f1b4dfd888aff7a7
4
+ data.tar.gz: 5dc0536e865b5e7afb69555b4a7274634e8ff7c0
5
5
  SHA512:
6
- metadata.gz: 5c91b00dc039b796ef6c88dd315a395021f6649958c5459f8d6b8231bc1f633f70e7a31fd38d3851c0aa722350d1ff769dca725572921d8b4866eb8693f256d4
7
- data.tar.gz: 906b593a89ef4ac9b426b2d5ae31312d0e70853293e90be819b4ef03c70a187b68860986b932ee53b8ca79e907f5345dc6fb23c8afc698b4b356d271bb8357b0
6
+ metadata.gz: 4c9f9f80031affe550184f7f107d7d712e11995eddf6b644b52558affa5a9b3e6778654176ee5b4c540967dbbf43536c854d8d0fd9251cb21726803d862539b9
7
+ data.tar.gz: ccc0a21928b7f598eb68a65bad34e8be0e52449ed65ef3fd9b8795d2876de549ae1e83c690909965cbf04c199451fe5d8adb6a83c820d85dcf2924b29633ac09
@@ -0,0 +1,191 @@
1
+ ## Contributing to Libraries.io :heart:
2
+ Thanks for considering contributing. These guidelines outline how to contribute to the [Libraries.io](http://github.com/librariesio) project.
3
+
4
+ ## Table of Contents
5
+ [What is Libraries.io all about?](#whats-librariesio-about)
6
+
7
+ [What should I know Before I get started?](#what-should-i-know-before-i-get-started)
8
+ * [Code of conduct](#code-of-conduct)
9
+ * [Langauge](#langauge)
10
+ * [Installation and setup](#setup)
11
+
12
+ [How can I contribute?](#how-can-i-contribute)
13
+ * [Reporting bugs](#reporting-bugs)
14
+ * [Suggesting enhancements](#suggesting-enhancements)
15
+ * [Suggesting a new feature](#suggesting-new-features)
16
+ * [Your first contribution](#your-first-contribution)
17
+ * [Tackling something meatier](#tackling-something-meatier)
18
+
19
+ [How can I talk to other contributors?](#how-can-i-talk-to-other-contributors)
20
+ * [Chat](#chat)
21
+ * [Video](#video)
22
+ * [Social media](#twitter)
23
+
24
+ [Who Are Libraries.io's Users?](#who-are-librariesios-users)
25
+
26
+ [Our workflow](#workflow)
27
+
28
+
29
+ ## What's Libraries.io About?
30
+ _Our goal is to raise the quality of all software._
31
+
32
+ By outlining our [mission and strategy](/strategy.md) we hope to give you more power to make decisions and determine how best to spend your time. Specifically we tackle three distinct problems:
33
+
34
+ * Discovery: _Helping developers make faster, more informed decisions about the software that they use._
35
+ * Maintainability: _Helping maintainers understand more about the software they depend upon and the consumers of their software._
36
+ * Sustainability: _Supporting undervalued software by highlighting shortfalls in contribution and funneling support to them._
37
+
38
+ ## What Should I Know Before I Get Started?
39
+
40
+ ### Code of Conduct
41
+ Libraries.io is an open and inclusive [community of people](https://github.com/orgs/librariesio/people) working together. We expect contributors to abide by our [contributor code of conduct](CODE_OF_CONDUCT.md) which basically say 'be excellent to each other'. Please report unacceptable behavior to conduct@libraries.io
42
+
43
+ ### Language
44
+ We communicate predominately in English. Contributions to the project should be made with English as the first language. We are happy for members of the community to communicate in a language other than English in chat, email and video but be aware that this might be considered exclusive by other members of the community.
45
+
46
+ ### Documentation
47
+ Documentation for the project as a whole is available at [docs.libraries.io](https://docs.libraries.io). These pages are generated from the [documentation](https://github.com/librariesio/documentation) repo. Documentation that needs to be in every repo is replicated in [required-files](https://github.com/librariesio/required-files) (currently limited to [GitHub templates](https://github.com/blog/2111-issue-and-pull-request-templates)). Otherwise documentation will be specific to that repo. For example the main [Libraries.io](https://github.com/librariesio/libraries.io) `README.md` contains information about installing and running the main rails application.
48
+
49
+ ### Setup
50
+ If you wish to make contributions to Libraries.io then you'll need a local version of the site to test. You can find instructions to install the correct Ruby version, Postgres, and to set up the database in our [README](https://github.com/librariesio/libraries.io/blob/master/README.md#getting-started).
51
+
52
+ ## How Can I Contribute?
53
+
54
+ ### Reporting Bugs
55
+
56
+ The simplest thing that you can do to help us is by filing good bug reports, so here we go:
57
+
58
+ #### Before Submitting a Bug Report
59
+
60
+ * Double-check that the bug is persistent. The site is still in it's infancy and sometimes artifacts may appear and disappear.
61
+ * Double-check the bug hasn't already been reported [on our issue tracker](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+org%3Alibrariesio), they *should* be labelled `bug` or `bugsnag`.
62
+
63
+ If something hasn't been raised, you can go ahead and create a new issue using [the template](/issue_template.md). If you'd like to help investigate further or fix the bug just mention it in your issue and check out our [workflow](#workflow).
64
+
65
+ ### Suggesting Enhancements
66
+
67
+ The next simplest thing you can do to help us is by telling us how we can improve the features we already support, here we go:
68
+
69
+ #### Before Submitting an Enhancement
70
+
71
+ * Check that the enhancement is not already [in our issue tracker](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+org%3Alibrariesio), they should be labelled 'enhancement'.
72
+
73
+ If there isn't already an issue for feature then go ahead and create a new issue for it using the [template](/issue_template.md). If you'd like to work on the enhancement then just mention it in a comment and check out our [workflow](#workflow).
74
+
75
+ ### Suggesting New Features
76
+
77
+ If you're into this zone then you need to understand a little more about what we're trying to achieve:
78
+
79
+ #### Before Suggesting a Feature
80
+
81
+ * Check that it aligns with [our strategy](strategy.md) and is specifically not in line with something we have said we will not do (for the moment this is anything to do with ranking *people*).
82
+ * Check that the feature is not already [in our issue tracker](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+org%3Alibrariesio), they should be tagged 'feature'.
83
+ * Specifically check that it is not already a [funded commitment](https://github.com/librariesio/supporters/issues).
84
+
85
+ If you're still thinking about that killer feature that no one else is thinking about then *please* create an issue for it using the [template](/issue_template.md).
86
+
87
+ ### Your First Contribution
88
+ You're in luck! We label issues that are ideal for first time contributors with [`first-pr`](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+user%3Alibrariesio+label%3A%22first-pr%22). For someone who wants something a little more meaty you might find an issue that needs some assistance with [`help wanted`](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+user%3Alibrariesio+label%3A%22help+wanted%22). Next you'll want to read our [workflow](#workflow).
89
+
90
+ ### Tackling Something Meatier
91
+
92
+ Tickets are labeled by size, skills required and to indicate workflow. Details can be found in our [labelling policy](/labelling.md).
93
+
94
+ To get you started you might want to check out issues concerning [documentation](https://github.com/librariesio/documentation/issues/), [user experience](https://github.com/librariesio/libraries.io/labels/ux), [visual design](https://github.com/librariesio/libraries.io/issues/labels/visual%20design) or perhaps something already [awaiting help](https://github.com/librariesio/libraries.io/labels/help%20wanted). You may find the following useful:
95
+
96
+ * Our [strategy](/strategy.md) which outlines what our goals are, how we are going to achieve those goals and what we are specifically going to avoid.
97
+ * A [techncial overview](/overview.md) of the components that make up the Libraries.io project and run the [https://libraries.io](https://libraries.io) site.
98
+
99
+ ## How Can I Talk To Other Contributors?
100
+
101
+ ### Chat
102
+ We use [Slack](http://slack.io) for chat. There's an open invitation available to anyone who wishes to join the conversation at [http://slack.libraries.io](http://slack.libraries.io).
103
+
104
+ We try to use the following channels accordingly:
105
+
106
+ * `#general` channel is used for general, water cooler-type conversation, contributor updates and issue discussion.
107
+ * `#events` is used to share and discuss events that may be of interest to or attended by members of the community
108
+ * `#activity` contains notifications from the various platforms that we use to keep the Libraries.io project turning. Including notifications from GitHub, Twitter and our servers.
109
+
110
+ Members are encouraged to openly discuss their work, their lives, share views and ask for help using chat. It should be considered a *safe space* in which there is *no such thing as a stupid question*. Conversely no one contributor should ever be expected to have read something said in a chat. If someone should know something then it should be written down as an issue and/or documented in an obvious place for others to find.
111
+
112
+ ### Video
113
+ [Google Hangouts](http://hangouts.google.com) is our preferred tool for video chat. We operate an [open hangout](http://bit.ly/2kWtYak) for anyone to jump into at any time to discuss issues face to face.
114
+
115
+ ### Regular updates
116
+ Contributors are encouraged to share what they're working on. We do this through daily or weekly updates in the `#general` channel on Slack. Updates should take the format 'currently working on X, expecting to move onto Y, blocked on Z' where x, y and z are issues in our [issue tracker](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+org%3Alibrariesio).
117
+
118
+ Additionally we host an [open hangout](http://bit.ly/2kWtYak) for any contributor to join at *5pm UTC on a Tuesday* to discuss their work, the next week's priorities and to ask questions of other contributors regarding any aspect of the project. Again this is considered a *safe space* in which *there is no such thing as a stupid question*.
119
+
120
+ ### Mail
121
+ The [core team](https://github.com/orgs/librariesio/teams/core) operate a mailing list for project updates. If you'd like to subscribe you'll find a form in the footer on [Libraries.io](http://libraries.io).
122
+
123
+ ### Twitter
124
+ We have an account on Twitter at [@librariesio](http://twitter.com/librariesio). This is predominately used to retweet news, events and musings by contributors rather than as a direct method of communication. Contributors are encouraged to use @librariesio in a tweet when talking about the project, so that we may retweet if appropriate. The account is moderated and protected by the [core team](https://github.com/orgs/librariesio/teams/core).
125
+
126
+ ### Facebook
127
+ We have a Facebook page at [@libraries.io](https://www.facebook.com/libraries.io). Again this is predominantly used to gather and reflect news, events and musings by contributors rather than as a direct method of communication. Contributors are encouraged to reference Libraries.io in a post when talking about the project, so that we may reflect this if appropriate. Again the account is moderated and protected by the [core team](https://github.com/orgs/librariesio/teams/core).
128
+
129
+ ### Medium
130
+ We have a Medium account at [@librariesio](https://medium.com/@librariesio) and once again it is used to reflect news, events and musings by contributors rather than a direct method of communication. Contributors are encouraged to reference @librariesio in a post when talking about the project, so that we may recommend it if appropriate. Again the account is moderated and protected by the [core team](https://github.com/orgs/librariesio/teams/core).
131
+
132
+ ## Who Are Libraries.io's Users?
133
+ Libraries.io focusses on the following personas:
134
+
135
+ ### Google
136
+ _Is hungry for linked data so she can serve you up search traffic_
137
+
138
+ ### 'Searcher'
139
+ _Is a developer with a problem, she is looking for something to help solve it._
140
+
141
+ ### 'Producer'
142
+ _Has a product or products that incorporates some free/open source dependencies. She needs to ensure the product(s) are well maintained, free of vulnerabilities and licence compatible._
143
+
144
+ ### 'Maintainer'
145
+ _Is a developer with a successful free/open source project. She's looking to understand more about those who use her project, attract more contributors and manage their contributions well._
146
+
147
+ ### 'Extender'
148
+ _Has her own ideas. She wants access to the raw data so that she can mash up her own service and offer it to the world._
149
+
150
+ ### 'Overlord'
151
+ _Has a vast empire of people, products and projects. Some of which she publishes as open source, some are proprietary. She wants to ensure that her policies regarding the use of dependencies are adhered to and that her team are as efficient as possible._
152
+
153
+ ## Workflow
154
+ In general we use [GitHub](https://help.github.com/) and [Git](https://git-scm.com/docs/gittutorial) to support our workflow. If you are unfamiliar with those tools then you should check them out until you feel you have a basic understanding of GitHub and a working understanding of Git. Specifically you should understand how forking, branching, committing, PRing and merging works.
155
+
156
+ #### Forking
157
+ We prefer that contributors fork the project in order to contribute.
158
+
159
+ #### Branching
160
+ We *try* to use principles of [GitHub-flow](https://lucamezzalira.com/2014/03/10/git-flow-vs-github-flow/) in our branching model. That is the `master` branch will always be deployable to the live site, and that every branch from that will be used to add a feature, fix a bug, improve something or otherwise represent an atomic unit of work.
161
+
162
+ #### Ticketing
163
+ We *try* to create an issue for everything. That is any bug, feature or enhancement that is worth an open, focussed and documented discussion.
164
+
165
+ #### Labelling
166
+ We constrain labels as they are a key part of our workflow. Tickets will be labeled according to our [labelling policy](/labelling.md).
167
+
168
+ #### Templates
169
+ We use templates to guide contributors toward good practice in [filing bugs, requesting enhancements and features](/issue_template.md) and in [issuing pull-requests](/pull_request_template.md).
170
+
171
+ #### Commenting
172
+ If it possible to comment your contribution — for instance if you are contributing code — then do so in a way that is simple, clear, concise and lowers the level of understanding necessary for others to comprehend what comes afterward does or achieves. If you are contributing code it is very likely it will be rejected if it does not contain sufficient comments.
173
+
174
+ #### Committing
175
+ When committing to a branch be sure to use plain, simple language that describes the incremental changes made on the branch toward the overall goal. Avoid unnecessary complexity. Simplify whenever possible. Assume a reasonable but not comprehensive knowledge of the tools, techniques and context of your work.
176
+
177
+ #### Testing
178
+ When adding or fixing functionality, tests should be added to help reduce future regressions and breakage. All tests are ran automatically when new commits are pushed to a branch. Pull requests with broken/missing tests are not likely to be merged.
179
+
180
+ #### Submitting for Review
181
+ Once a piece of work (in a branch) is complete it should be readied for review. This is your last chance to ensure that your contribution is [properly tested](#testing). If you are contributing code it is likely your contribution will be rejected if it would lower the test-coverage. Once this is done you can submit a pull-request following the [template](/pull_request_template.md).
182
+
183
+ It is likely that your contributions will need to be checked by at least one member of the [core team](https://github.com/orgs/librariesio/teams/core) prior to merging. It is also incredibly likely that your contribution may need some re-work in order to be accepted. Particularly if it lacks an appropriate level of comments, tests or it is difficult to understand your commits. Please do not take offense if this is the case. We understand that contributors give their time because they want to improve the project but please understand it is another's responsibility to ensure that the project is maintainable, and good practices like these are key to ensuring that is possible.
184
+
185
+ #### Reviewing a PR
186
+ We appreciate that it may be difficult to offer constructive criticism, but it is a necessary part of ensuring the project is maintainable and successful. If it is difficult to understand something, request it is better commented. If you do not feel assured of the robustness of a contribution, request it is better tested. If it is unclear what the goal of the piece of work is and how it relates to the [strategy](/strategy.md), request a clarification in the corresponding issue. If a pull-request has no corresponding issue, decreases code coverage or otherwise decreases the quality of the project. Reject it. Otherwise, merge it.
187
+
188
+ #### Merging
189
+ As we keep the `master` branch in a permanent state of 'deployment ready' once-merged your contribution will be live on the next deployment.
190
+ #### Deploying
191
+ Any member of the [deployers](https://github.com/orgs/librariesio/teams/deployers) team are able to redeploy the site. If you require a deployment then you might find one of them in our `#general` [chat channel on Slack](slack.libraries.io).
@@ -0,0 +1,18 @@
1
+ Thanks for taking the time to raise an issue. This template should guide you through the process of submitting a bug, enhancement or feature request. Please erase any part of this template that is not relevant to your issue.
2
+
3
+ ## Bugs
4
+ Before submitting a bug report:
5
+
6
+ - [ ] Double-check that the bug is persistent,
7
+ - [ ] Double-check the bug hasn't already been reported [on our issue tracker](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+org%3Alibrariesio), they *should* be labelled `bug` or `bugsnag`.
8
+
9
+ If you have completed those steps then please replace this section with a description of the steps taken to recreate the bug, the expected behavior and the observed behavior.
10
+
11
+ ## Enhancements and Features
12
+
13
+ Before submitting an enhancement or feature request:
14
+
15
+ - [ ] Check that the enhancement is not already [in our issue tracker](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+org%3Alibrariesio), they should be labelled 'enhancement'.,
16
+ - [ ] For large feature requests, check that your request aligns with our strategy http://docs.libraries.io/strategy.
17
+
18
+ If you have complete the above step then please replace this section with a description of your proposed enhancement or feature, the motivation for it, an approach and any alternative approaches considered, and whether you are willing and able to create a pull request for it. Note that we may close this issue if it's not something we're planning on working on.
@@ -0,0 +1,10 @@
1
+ Thanks taking the time to contribute. This template should help guide you through the process of creating a pull request for review. Please erase any part of this template that is not relevant to your pull request:
2
+
3
+
4
+ - [ ] Have you followed the guidelines for [contributors](http://docs.libraries.io/contributorshandbook)?
5
+ - [ ] Have you checked to ensure there aren't other open pull requests on the repository for a similar change?
6
+ - [ ] Is there a corresponding ticket for your pull request?
7
+ - [ ] Have you written new tests for your changes?
8
+ - [ ] Have you successfully run the project with your changes locally?
9
+
10
+ If so then please replace this section with a link to the ticket(s) it addressed, an explanation of your change and why you think we should include it. Thanks again!
data/.travis.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.4
3
+ - 2.4.0
4
4
  cache: bundler
5
5
  sudo: false
data/lib/spdx.rb CHANGED
@@ -4,20 +4,19 @@ require "fuzzy_match"
4
4
 
5
5
  module Spdx
6
6
  def self.find(name)
7
- name = name.downcase
8
- lookup(name) || find_by_special_case(name) || closest(name)
7
+ lookup(name.strip) || find_by_special_case(name.strip) || closest(name.strip)
9
8
  end
10
9
 
11
10
  def self.lookup(name)
12
11
  return false if name.nil?
13
- return SpdxLicenses[name] if SpdxLicenses[name]
12
+ return SpdxLicenses[name] if SpdxLicenses.exist?(name)
14
13
  lowercase = SpdxLicenses.data.keys.find{|k| k.downcase == name.downcase }
15
14
  SpdxLicenses[lowercase] if lowercase
16
15
  end
17
16
 
18
17
  def self.closest(name)
19
- name = name.gsub(/#{stop_words.join('|')}/i, '')
20
- name = name.gsub(/(\d)/, ' \1 ')
18
+ name.gsub!(/#{stop_words.join('|')}/i, '')
19
+ name.gsub!(/(\d)/, ' \1 ')
21
20
  best_match = fuzzy_match(name)
22
21
  return nil unless best_match
23
22
  lookup(best_match) || find_by_name(best_match)
@@ -116,7 +115,11 @@ module Spdx
116
115
  '2-clause bsdl' => 'BSD-2-clause',
117
116
  '3-clause bsdl' => 'BSD-3-clause',
118
117
  '2-clause bsd' => 'BSD-2-clause',
119
- '3-clause bsd' => 'BSD-3-clause'
118
+ '3-clause bsd' => 'BSD-3-clause',
119
+ "bsd 3-clause" => 'BSD-3-clause',
120
+ "bsd 2-clause" => 'BSD-2-clause',
121
+ "two-clause bsd-style license" => 'BSD-2-clause',
122
+ "bsd style" => 'BSD-3-clause'
120
123
  }
121
124
  end
122
125
 
data/lib/spdx/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Spdx
2
- VERSION = "1.3.1"
2
+ VERSION = "1.3.2"
3
3
  end
data/spdx.gemspec CHANGED
@@ -20,6 +20,6 @@ Gem::Specification.new do |spec|
20
20
  spec.add_dependency "spdx-licenses", "~> 1.0"
21
21
  spec.add_dependency "fuzzy_match", "~> 2.1"
22
22
  spec.add_development_dependency "bundler", "~> 1.10"
23
- spec.add_development_dependency "rake", "~> 11.1"
24
- spec.add_development_dependency "rspec", "~> 3.4.0"
23
+ spec.add_development_dependency "rake", "~> 12"
24
+ spec.add_development_dependency "rspec", "~> 3.5.0"
25
25
  end
data/spec/spdx_spec.rb CHANGED
@@ -32,6 +32,10 @@ describe Spdx do
32
32
  expect(Spdx.find('UNLICENSE').name).to eq("The Unlicense")
33
33
  end
34
34
 
35
+ it "should strip whitespace from strings before lookups" do
36
+ expect(Spdx.find(" BSD-3-Clause").id).to eq("BSD-3-Clause")
37
+ end
38
+
35
39
  it "should return know licenses for special cases" do
36
40
  expect(Spdx.find('MPL1').name).to eq('Mozilla Public License 1.0')
37
41
  expect(Spdx.find('MPL1.0').name).to eq('Mozilla Public License 1.0')
@@ -84,6 +88,12 @@ describe Spdx do
84
88
  expect(Spdx.find('apache_v2').name).to eq('Apache License 2.0')
85
89
  expect(Spdx.find('lgpl_2_1').name).to eq('GNU Lesser General Public License v2.1 only')
86
90
  expect(Spdx.find('lgpl_v2_1').name).to eq('GNU Lesser General Public License v2.1 only')
91
+
92
+ expect(Spdx.find("BSD 3-Clause").name).to eq("BSD 3-clause \"New\" or \"Revised\" License")
93
+ expect(Spdx.find("BSD 3-clause").name).to eq("BSD 3-clause \"New\" or \"Revised\" License")
94
+ expect(Spdx.find("BSD 2-Clause").name).to eq("BSD 2-clause \"Simplified\" License")
95
+ expect(Spdx.find("BSD 2-clause").name).to eq("BSD 2-clause \"Simplified\" License")
96
+ expect(Spdx.find("BSD Style").name).to eq("BSD 3-clause \"New\" or \"Revised\" License")
87
97
  end
88
98
  end
89
99
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spdx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Nesbitt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-11 00:00:00.000000000 Z
11
+ date: 2017-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spdx-licenses
@@ -58,28 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '11.1'
61
+ version: '12'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '11.1'
68
+ version: '12'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 3.4.0
75
+ version: 3.5.0
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 3.4.0
82
+ version: 3.5.0
83
83
  description:
84
84
  email:
85
85
  - andrewnez@gmail.com
@@ -87,11 +87,13 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - ".github/CONTRIBUTING.md"
91
+ - ".github/ISSUE_TEMPLATE.md"
92
+ - ".github/PULL_REQUEST_TEMPLATE.md"
90
93
  - ".gitignore"
91
94
  - ".rspec"
92
95
  - ".travis.yml"
93
96
  - CODE_OF_CONDUCT.md
94
- - CONTRIBUTING.md
95
97
  - Gemfile
96
98
  - LICENSE.txt
97
99
  - README.md
data/CONTRIBUTING.md DELETED
@@ -1,10 +0,0 @@
1
- # Contributing
2
-
3
- * Fork the project.
4
- * Make your feature addition or bug fix.
5
- * Add tests for it. This is important so I don't break it in a future version unintentionally.
6
- * Send a pull request. Bonus points for topic branches.
7
-
8
- ## Code of Conduct
9
-
10
- Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.