hubstats 1.1.0 → 1.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
  SHA256:
3
- metadata.gz: aae88f0ce54787c6401086e8d18595df08e0eb137f54e3a40b0885bbc70c55df
4
- data.tar.gz: fd017eac241475b6fc23f3be6189ec37a78b583d8f167ffc5130d90462a807b4
3
+ metadata.gz: af2d6e24c39b02c7b666ee7e6f65fc9b06b0d0b478985767100f20a7958a8869
4
+ data.tar.gz: ced6d589c25044ee0dada03f897e2f3c5893e27ec6f9ac6c5c4fc4aaa2d5bdd2
5
5
  SHA512:
6
- metadata.gz: 99c74dd565a43d334b670d72dfabb7b26cb21449224ac77554f1eef748775374a165731e9b70353712c0f4806d019a6ecd5804aadf495e439059f9444d604a69
7
- data.tar.gz: f354fec6f945a2d65a111a8f2d42c8f4c0f6ad7bab10b46c0d4e9c6939c22abd77c4d8d3910803f4d9eb2a0b45c21a4118dceb16273c577f6a1842d8220a55d1
6
+ metadata.gz: ba679f65ce856d603794a8d6ea7b6a8076afeb47901c644713604a3e48c3ed1a1fc80f81b9c51708b17cecba57aa2925eae4a538f8d6ebd2a37158e290133b04
7
+ data.tar.gz: 1de54ea29571462ab9f2dd9c25132b5256709dd8ad592641f4e0b7fcd43ddc6548b21d766fadcf0e148dbad3fa5e9654a67fd80d4d9ebeaa1bb66db6e60e8e4d
@@ -1 +1 @@
1
- ruby-2.3.0
1
+ 2.6.1
data/.soyuz.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  defaults:
2
2
  deploy_cmd: gem push *.gem
3
3
  before_deploy_cmds:
4
- # - /usr/local/bin/op tag-release
4
+ - /usr/local/bin/op tag-release
5
5
  - sed -i "" -e "s/\".*/\"$(git tag| sed s/v// | sort -n -t. -k1,1 -k2,2 -k3,3 | tail -1)\"/" lib/hubstats/version.rb
6
6
  - git add lib/hubstats/version.rb
7
7
  - git commit -m "Version Bump" && git push
@@ -1,4 +1,4 @@
1
- sudo: false
1
+ os: linux
2
2
  dist: trusty
3
3
  language: ruby
4
4
  cache: bundler
@@ -15,6 +15,7 @@ rvm:
15
15
  - 2.2
16
16
  - 2.3.0
17
17
  - 2.3.3
18
+ - 2.6.1
18
19
 
19
20
  script: bundle exec rspec
20
21
  before_script:
@@ -1,29 +1 @@
1
- #### v1.1.0
2
- * Resolve gem vulnerabilities
3
-
4
- > Emma Sax: production-status-check[bot]: https://github.com/sportngin/hubstats/pull/141
5
-
6
- #### v1.0.0
7
- * Be able to load repositories and teams from webhooks
8
-
9
- > Emma Sax, Carl Allen: production-status-check[bot]: https://github.com/sportngin/hubstats/pull/138
10
-
11
- #### v0.12.2
12
- * Fix bug that results in comments never being saved
13
-
14
- > Emma Sax: production-status-check[bot]: https://github.com/sportngin/hubstats/pull/134
15
-
16
- #### v0.12.1
17
- * Show 50 items in detailed show pages
18
-
19
- > Emma Sax: Unknown User: https://github.com/sportngin/hubstats/pull/133
20
-
21
- #### v0.12.0
22
- #### v0.11.5
23
- * Fix bug where adding repositories will break if there are no commits
24
-
25
- > Emma Sax: AJ Stuyvenberg, Unknown User: https://github.com/sportngin/hubstats/pull/131
26
-
27
- #### v0.11.4
28
- #### v0.11.3
29
- #### v0.11.2
1
+ #### v1.2.0
@@ -24,6 +24,8 @@ Gem::Specification.new do |s|
24
24
  s.add_dependency "sass-rails"
25
25
  s.add_dependency "railties", "~> 4.2.11.1"
26
26
  s.add_dependency "jquery-rails", "= 4.3.3"
27
+ s.add_dependency "sprockets", "~> 3.7.2"
28
+ s.add_dependency "sprockets-rails", "~> 2.3.3"
27
29
  s.add_dependency "bootstrap-datepicker-rails", "~> 1.5"
28
30
 
29
31
  s.add_development_dependency "mysql2",'~> 0.3.2'
@@ -1,3 +1,3 @@
1
1
  module Hubstats
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
@@ -4,6 +4,8 @@ require File.expand_path("../../test/dummy/config/environment", __FILE__)
4
4
  require 'rspec/rails'
5
5
  require 'factory_girl_rails'
6
6
  require 'faker'
7
+ require 'test_response_patch'
8
+
7
9
  # Requires supporting ruby files with custom matchers and macros, etc, in
8
10
  # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
9
11
  # run as spec files by default. This means that files in spec/support that end
@@ -23,7 +25,7 @@ RSpec.configure do |config|
23
25
  # config.mock_with :rr
24
26
 
25
27
  config.include FactoryGirl::Syntax::Methods
26
-
28
+
27
29
  # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
28
30
  # config.fixture_path = "#{::Rails.root}/spec/fixtures"
29
31
 
@@ -0,0 +1,14 @@
1
+ # The suggestion for this file is from: https://github.com/rails/rails/issues/34790
2
+ if RUBY_VERSION >= '2.6.0'
3
+ if Rails.version < '5'
4
+ class ActionController::TestResponse < ActionDispatch::TestResponse
5
+ def recycle!
6
+ @mon_mutex_owner_object_id = nil
7
+ @mon_mutex = nil
8
+ initialize
9
+ end
10
+ end
11
+ else
12
+ raise 'This monkey patch is no longer needed. Please remove this.'
13
+ end
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hubstats
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliot Hursh
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-03-06 00:00:00.000000000 Z
12
+ date: 2020-03-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -123,6 +123,34 @@ dependencies:
123
123
  - - '='
124
124
  - !ruby/object:Gem::Version
125
125
  version: 4.3.3
126
+ - !ruby/object:Gem::Dependency
127
+ name: sprockets
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: 3.7.2
133
+ type: :runtime
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: 3.7.2
140
+ - !ruby/object:Gem::Dependency
141
+ name: sprockets-rails
142
+ requirement: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: 2.3.3
147
+ type: :runtime
148
+ prerelease: false
149
+ version_requirements: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: 2.3.3
126
154
  - !ruby/object:Gem::Dependency
127
155
  name: bootstrap-datepicker-rails
128
156
  requirement: !ruby/object:Gem::Requirement
@@ -393,6 +421,7 @@ files:
393
421
  - spec/models/hubstats/team_spec.rb
394
422
  - spec/models/hubstats/user_spec.rb
395
423
  - spec/spec_helper.rb
424
+ - spec/test_response_patch.rb
396
425
  - test/dummy/README.rdoc
397
426
  - test/dummy/Rakefile
398
427
  - test/dummy/app/assets/javascripts/application.js
@@ -448,7 +477,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
448
477
  - !ruby/object:Gem::Version
449
478
  version: '0'
450
479
  requirements: []
451
- rubygems_version: 3.0.3
480
+ rubygems_version: 3.0.1
452
481
  signing_key:
453
482
  specification_version: 4
454
483
  summary: Github Statistics
@@ -481,6 +510,7 @@ test_files:
481
510
  - spec/models/hubstats/team_spec.rb
482
511
  - spec/models/hubstats/user_spec.rb
483
512
  - spec/spec_helper.rb
513
+ - spec/test_response_patch.rb
484
514
  - test/dummy/README.rdoc
485
515
  - test/dummy/Rakefile
486
516
  - test/dummy/app/assets/javascripts/application.js