pronto-flake8 0.3.0 → 0.4.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
- SHA1:
3
- metadata.gz: ff84849798a3661d0e2ac34763de2300cfe80389
4
- data.tar.gz: 23f1bcf2a62cde37c7584fe80d59f861d793aef0
2
+ SHA256:
3
+ metadata.gz: f6671a199ff928efcc2627b402747847f4c1efd066e71811fa549b33dc1f138b
4
+ data.tar.gz: b1315fd332051f6092a6a753ff57bf013ee16b7e67d40ec2f6265adcb947ca00
5
5
  SHA512:
6
- metadata.gz: 18f98f775907a9221c38773d0bd23f17c3510ee9aee4de51e06843e278993f23173af9f3d7c8a937fc543d9cb13307e91e109dc401dcc4f02d9a398ed07ce6a5
7
- data.tar.gz: efaf4f1810fa218f95ecf82981638724a59667c0d0c1f98ec684212d12c47697646263ca998bae6a468aaeeb801f511b8912b696edc968d227240ca8384a02d5
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.4.5
44
- rbenv global 2.4.5 # or make it project specific
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
- Make your changes
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
@@ -47,7 +47,7 @@ module Pronto
47
47
 
48
48
  CONFIG_KEYS.each do |config_key|
49
49
  next unless config[config_key]
50
- send("#{config_key}=", config[config_key])
50
+ instance_variable_set("@#{config_key}", config[config_key])
51
51
  end
52
52
  end
53
53
 
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module Flake8Version
3
- VERSION = '0.3.0'.freeze
3
+ VERSION = '0.4.0'.freeze
4
4
  end
5
5
  end
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.3.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-01-05 00:00:00.000000000 Z
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.5.2.3
108
+ rubygems_version: 2.7.6.2
109
109
  signing_key:
110
110
  specification_version: 4
111
111
  summary: Pronto runner for flake8.