pronto-flake8 0.3.0 → 0.4.0
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 +5 -5
- data/README.md +5 -4
- data/lib/pronto/flake8.rb +1 -1
- data/lib/pronto/flake8/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f6671a199ff928efcc2627b402747847f4c1efd066e71811fa549b33dc1f138b
|
|
4
|
+
data.tar.gz: b1315fd332051f6092a6a753ff57bf013ee16b7e67d40ec2f6265adcb947ca00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddc5d6eaf5d2016ddba3ad09c0a0f3fba526e134f5428416b1ac8ff00e0669e64a0affb5755ccac3300e8ecceec56d45fb52ffcc083ded12795d7e0c012f09f9
|
|
7
|
+
data.tar.gz: 15394950d996b8d242cf6e77122a0b118aa9c762eecd4958516c466ea58b377024721781fe1473dde8edd8f2395fe8d734aed1cdeddc2748948dc8a6150b8ff3
|
data/README.md
CHANGED
|
@@ -40,8 +40,8 @@ Ruby
|
|
|
40
40
|
```sh
|
|
41
41
|
brew install cmake # or your OS equivalent
|
|
42
42
|
brew install rbenv # or your OS equivalent
|
|
43
|
-
rbenv install 2.
|
|
44
|
-
rbenv global 2.
|
|
43
|
+
rbenv install 2.5.7
|
|
44
|
+
rbenv global 2.5.7 # or make it project specific
|
|
45
45
|
gem install bundle
|
|
46
46
|
gem install pronto
|
|
47
47
|
bundle install
|
|
@@ -55,11 +55,12 @@ source venv/bin/activate
|
|
|
55
55
|
pip install -r requirements.txt
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
### Instructions for maintainers
|
|
59
59
|
```sh
|
|
60
|
-
git checkout -b <new_feature>
|
|
60
|
+
git checkout -b <new_feature> # or for core maintainer, just pull master after accepting merge
|
|
61
61
|
# make your changes
|
|
62
62
|
bundle exec rspec
|
|
63
|
+
# Update the version in `lib/pronto/flake8/version.rb` to the next version
|
|
63
64
|
gem build pronto-flake8.gemspec
|
|
64
65
|
gem install pronto-flake8-<current_version>.gem # get current version from previous command
|
|
65
66
|
uncomment the line in dummy_package/dummy.py
|
data/lib/pronto/flake8.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pronto-flake8
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rajiv Abraham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pronto
|
|
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
105
|
requirements:
|
|
106
106
|
- flake8 (in PATH)
|
|
107
107
|
rubyforge_project:
|
|
108
|
-
rubygems_version: 2.
|
|
108
|
+
rubygems_version: 2.7.6.2
|
|
109
109
|
signing_key:
|
|
110
110
|
specification_version: 4
|
|
111
111
|
summary: Pronto runner for flake8.
|