roqua-support 0.1.23 → 0.1.24

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: 2fb464998141d4c9bb13d54f8f903ea3dade2033
4
- data.tar.gz: f45098dde3b0074ed78f7fa6ef645994cf43fa4b
3
+ metadata.gz: 3f1a04caaa757627735ff9ac6c83c220f21b0ea0
4
+ data.tar.gz: 9ff7c7a188bb759645ed74e7b1253b43f0eab896
5
5
  SHA512:
6
- metadata.gz: d16e482e6b371dd978c1dc590fa68fccb4dba5cbee9feff21c14fa2243d1cbfe3086cbf79df19c7addbad1d8f91b450055d6ccfbe9edb29f870cb3089cc3a8c3
7
- data.tar.gz: 2d2b82cc4ff8e703c883b14bb1ec1c1429a8ba498d8713ff306c31e8009483f8200063fc04b3b8ec17a0806c54b0aa565c16cf6549845fbdfaea4cefa723d9a8
6
+ metadata.gz: e47f9a438f4cf20f34377b691e1d0964f5fcaec675f195297c109f689a12c63bf5b4445fdcaf801ad6213a199d1485493b71661a8e7868e275d3c0c4a2b2e54f
7
+ data.tar.gz: '09c7e888632d9dd19df77b2d3a2a5813d10063c1ea19ef81bec447e0e9055815539d7318e6a0f45b71f2bd510eb4d22a98bac385140796932390b9ce63d933fc'
@@ -0,0 +1,2 @@
1
+ inherit_from:
2
+ - styleguide/ruby/rubocop.yml
data/Gemfile CHANGED
@@ -4,6 +4,7 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  gem 'appraisal'
7
+ gem 'roqua_styleguide', git: 'https://gitlab.roqua.nl/roqua/styleguide.git'
7
8
 
8
9
  group :test do
9
10
  gem 'actionpack', '>= 4.0'
@@ -1,3 +1,10 @@
1
+ GIT
2
+ remote: https://gitlab.roqua.nl/roqua/styleguide.git
3
+ revision: e1fbbb611484e295719ed91c4eef889753ac8d8f
4
+ specs:
5
+ roqua_styleguide (0.0.6)
6
+ rubocop (~> 0.50.0)
7
+
1
8
  PATH
2
9
  remote: .
3
10
  specs:
@@ -5,7 +12,6 @@ PATH
5
12
  active_interaction (~> 3.0)
6
13
  activesupport (>= 3.2, < 6)
7
14
  naught (~> 1.0)
8
- rubocop (~> 0.49.1)
9
15
 
10
16
  GEM
11
17
  remote: https://rubygems.org/
@@ -78,7 +84,7 @@ GEM
78
84
  notiffany (0.1.1)
79
85
  nenv (~> 0.1)
80
86
  shellany (~> 0.0)
81
- parallel (1.11.2)
87
+ parallel (1.12.0)
82
88
  parser (2.4.0.0)
83
89
  ast (~> 2.2)
84
90
  powerpack (0.1.1)
@@ -102,7 +108,7 @@ GEM
102
108
  thor (>= 0.18.1, < 2.0)
103
109
  rainbow (2.2.2)
104
110
  rake
105
- rake (12.0.0)
111
+ rake (12.1.0)
106
112
  rb-fsevent (0.9.8)
107
113
  rb-inotify (0.9.7)
108
114
  ffi (>= 0.5.0)
@@ -132,14 +138,14 @@ GEM
132
138
  rspec-mocks (~> 3.5.0)
133
139
  rspec-support (~> 3.5.0)
134
140
  rspec-support (3.5.0)
135
- rubocop (0.49.1)
141
+ rubocop (0.50.0)
136
142
  parallel (~> 1.10)
137
143
  parser (>= 2.3.3.1, < 3.0)
138
144
  powerpack (~> 0.1)
139
- rainbow (>= 1.99.1, < 3.0)
145
+ rainbow (>= 2.2.2, < 3.0)
140
146
  ruby-progressbar (~> 1.7)
141
147
  unicode-display_width (~> 1.0, >= 1.0.1)
142
- ruby-progressbar (1.8.1)
148
+ ruby-progressbar (1.8.3)
143
149
  ruby_dep (1.5.0)
144
150
  shellany (0.0.1)
145
151
  slop (3.6.0)
@@ -159,12 +165,13 @@ DEPENDENCIES
159
165
  bundler (~> 1.0)
160
166
  combustion (~> 0.5.2)
161
167
  guard-rspec (~> 4.2.6)
162
- rake (~> 12)
168
+ rake
163
169
  responders
164
170
  roqua-support!
171
+ roqua_styleguide!
165
172
  rspec (>= 2.12.0, < 4.0)
166
173
  rspec-instrumentation-matcher
167
174
  rspec-rails
168
175
 
169
176
  BUNDLED WITH
170
- 1.15.3
177
+ 1.15.4
data/Rakefile CHANGED
@@ -2,6 +2,9 @@ require 'rubygems'
2
2
  require 'bundler/setup'
3
3
  require 'rake'
4
4
 
5
+ spec = Gem::Specification.find_by_name 'roqua_styleguide'
6
+ load "#{spec.gem_dir}/lib/tasks/styleguide.rake"
7
+
5
8
  begin
6
9
  require 'bundler'
7
10
  rescue LoadError => e
@@ -1,5 +1,5 @@
1
1
  module Roqua
2
2
  module Support
3
- VERSION = '0.1.23'.freeze
3
+ VERSION = '0.1.24'.freeze
4
4
  end
5
5
  end
@@ -22,12 +22,7 @@ Gem::Specification.new do |gem|
22
22
  gem.add_dependency 'naught', '~> 1.0'
23
23
  gem.add_dependency 'active_interaction', '~> 3.0'
24
24
 
25
- # We can't start the shared Rubocop file with .rubocop because of a bug related to inherit_gem.
26
- # For more details:
27
- # https://github.com/bbatsov/rubocop/issues/4154
28
- gem.add_dependency 'rubocop', '~> 0.49.1'
29
-
30
25
  gem.add_development_dependency 'bundler', '~> 1.0'
31
- gem.add_development_dependency 'rake', '~> 12'
26
+ gem.add_development_dependency 'rake'
32
27
  gem.add_development_dependency 'rspec', '>= 2.12.0', '< 4.0'
33
28
  end
@@ -10,6 +10,7 @@ AllCops:
10
10
  - 'db/schema.rb'
11
11
  - 'db/seeds/**/*'
12
12
  - 'local/*'
13
+ - 'node_modules/**/*'
13
14
  - 'script/**/*'
14
15
  - 'tmp/**/*'
15
16
  - 'vendor/**/*'
@@ -196,7 +197,7 @@ Style/NumericLiterals:
196
197
  #
197
198
  # Argumentation: We do not want Rubocop to enforce this style. Sometimes methods
198
199
  # starting with `get_` or `set_` provide better readability and understanding of code
199
- Style/AccessorMethodName:
200
+ Naming/AccessorMethodName:
200
201
  Enabled: false
201
202
 
202
203
  # This forces comments to align with the code.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roqua-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.23
4
+ version: 0.1.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marten Veldthuis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-24 00:00:00.000000000 Z
11
+ date: 2017-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -58,20 +58,6 @@ dependencies:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
60
  version: '3.0'
61
- - !ruby/object:Gem::Dependency
62
- name: rubocop
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: 0.49.1
68
- type: :runtime
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: 0.49.1
75
61
  - !ruby/object:Gem::Dependency
76
62
  name: bundler
77
63
  requirement: !ruby/object:Gem::Requirement
@@ -90,16 +76,16 @@ dependencies:
90
76
  name: rake
91
77
  requirement: !ruby/object:Gem::Requirement
92
78
  requirements:
93
- - - "~>"
79
+ - - ">="
94
80
  - !ruby/object:Gem::Version
95
- version: '12'
81
+ version: '0'
96
82
  type: :development
97
83
  prerelease: false
98
84
  version_requirements: !ruby/object:Gem::Requirement
99
85
  requirements:
100
- - - "~>"
86
+ - - ">="
101
87
  - !ruby/object:Gem::Version
102
- version: '12'
88
+ version: '0'
103
89
  - !ruby/object:Gem::Dependency
104
90
  name: rspec
105
91
  requirement: !ruby/object:Gem::Requirement
@@ -129,6 +115,7 @@ files:
129
115
  - ".gitignore"
130
116
  - ".gitlab-ci.yml"
131
117
  - ".rspec"
118
+ - ".rubocop.yml"
132
119
  - ".travis.yml"
133
120
  - Appraisals
134
121
  - CHANGELOG.md
@@ -164,9 +151,6 @@ files:
164
151
  - lib/roqua/support/stats/hosted_graphite_backend.rb
165
152
  - lib/roqua/validators/subset_validator.rb
166
153
  - roqua-support.gemspec
167
- - rubocop-rails-4.yml
168
- - rubocop-rails-5.yml
169
- - rubocop.yml
170
154
  - spec/roqua/core_ext/active_interaction/date_time_as_unix_extension_spec.rb
171
155
  - spec/roqua/core_ext/active_interaction/duration_filter_spec.rb
172
156
  - spec/roqua/core_ext/active_interaction/rails_intrumentation_spec.rb
@@ -185,6 +169,7 @@ files:
185
169
  - spec/roqua/support_spec.rb
186
170
  - spec/roqua/validators/subset_validator_spec.rb
187
171
  - spec/spec_helper.rb
172
+ - styleguide/ruby/rubocop.yml
188
173
  homepage: https://github.com/roqua/roqua-support
189
174
  licenses:
190
175
  - MIT
@@ -205,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
190
  version: '0'
206
191
  requirements: []
207
192
  rubyforge_project:
208
- rubygems_version: 2.5.2
193
+ rubygems_version: 2.5.2.1
209
194
  signing_key:
210
195
  specification_version: 4
211
196
  summary: Helper objects and proxies used by a lot of RoQua applications
@@ -1,8 +0,0 @@
1
- inherit_from:
2
- - rubocop.yml
3
-
4
- Rails:
5
- Enabled: true
6
-
7
- Rails/ApplicationRecord:
8
- Enabled: false
@@ -1,5 +0,0 @@
1
- inherit_from:
2
- - rubocop.yml
3
-
4
- Rails:
5
- Enabled: true