hubstats 0.5.11 → 0.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.markdown +9 -0
- data/Gemfile +1 -1
- data/README.md +5 -1
- data/hubstats.gemspec +1 -0
- data/lib/hubstats/version.rb +1 -1
- data/test/dummy/db/schema.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03f7e5134a271c1d456d0685071339a61a25baa2
|
4
|
+
data.tar.gz: 65a2b218e9d928cf23465f35f8618e342266efc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7efb57e76b90c370c11c098501c1aff8ce14452af5a5e118170af366ee20ddcb23ec04743d25c276a8e248de4a934cefae197406e0a89f119d7b52a5bf2ce842
|
7
|
+
data.tar.gz: e0238e32dafbae7cb5f2d32b4bf66bac614c3c5a78393e1e7f420bee31cae64ed98dff06f03758d780cb9aff8a2454582e1a45285417ab811b1c05c04d3845dd
|
data/CHANGELOG.markdown
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
#### v0.5.12
|
2
|
+
* Restrict mysql2 dependency to compatible version
|
3
|
+
|
4
|
+
> Brian Bergstrom: Andy Fleener, Emma Sax: https://github.com/sportngin/hubstats/pull/89
|
5
|
+
|
6
|
+
* making sure mysql2 version is within 0.3
|
7
|
+
|
8
|
+
> Emma Sax: : https://github.com/sportngin/hubstats/pull/88
|
9
|
+
|
1
10
|
#### v0.5.11
|
2
11
|
* Yet another attempt at fixing GitHub org webhooks bug
|
3
12
|
|
data/Gemfile
CHANGED
@@ -7,7 +7,7 @@ gemspec
|
|
7
7
|
|
8
8
|
# jquery-rails is used by the dummy application
|
9
9
|
gem "jquery-rails"
|
10
|
-
|
10
|
+
|
11
11
|
# Declare any dependencies that are still in development here instead of in
|
12
12
|
# your gemspec. These might include edge Rails or gems from your path or
|
13
13
|
# Git. Remember to move these dependencies to your gemspec before releasing
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Hubstats [![Build Status](https://travis-ci.org/sportngin/hubstats.svg?branch=master)](https://travis-ci.org/sportngin/hubstats)
|
2
2
|
|
3
|
-
Hubstats is a rails plugin which allows you to search and monitor pull requests made across a collection of repositories. It also gives extra statistics about users and pull requests not found on GitHub.
|
3
|
+
Hubstats is a rails plugin which allows you to search and monitor pull requests, teams, and users made across a collection of repositories. It also gives extra statistics about users, teams, and pull requests not found on GitHub. For more information on Hubstats and the development of Hubstats, see the Coding in the Crease [Hubstats blog](http://www.codinginthecrease.com/news_article/show/545869?referrer_id) by Emma Sax. For additional information on the setup process of Hubstats, although you'll find plenty below, go to the [Hubstats wiki](https://github.com/sportngin/hubstats/wiki).
|
4
4
|
|
5
5
|
## Setup
|
6
6
|
The following setup is designed to only be used when integrating this plugin into a rails application.
|
@@ -101,6 +101,10 @@ to serve the plugin. http://guides.rubyonrails.org/plugins.html will give more i
|
|
101
101
|
Run `rake hubstats:setup`.
|
102
102
|
|
103
103
|
Add 'mount Hubstats::Engine => "/hubstats"' to your routes file.
|
104
|
+
|
105
|
+
Read [this blog about Hubstats](http://www.codinginthecrease.com/news_article/show/545869?referrer_id).
|
106
|
+
|
107
|
+
Go to the [Hubstats wiki](https://github.com/sportngin/hubstats/wiki) for additional information.
|
104
108
|
|
105
109
|
<hr>
|
106
110
|
|
data/hubstats.gemspec
CHANGED
@@ -22,6 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.add_dependency "select2-rails", "3.5.9"
|
23
23
|
s.add_dependency "bootstrap-datepicker-rails", "~> 1.4.0"
|
24
24
|
|
25
|
+
s.add_development_dependency "mysql2",'~> 0.3.20'
|
25
26
|
s.add_development_dependency "rspec-rails",'~> 3.0.0.beta'
|
26
27
|
s.add_development_dependency "shoulda-matchers", "~> 2.6"
|
27
28
|
s.add_development_dependency "factory_girl_rails", "~> 4.4"
|
data/lib/hubstats/version.rb
CHANGED
data/test/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20150721192612) do
|
15
15
|
|
16
16
|
create_table "hubstats_comments", :force => true do |t|
|
17
17
|
t.string "kind"
|
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: 0.5.
|
4
|
+
version: 0.5.12
|
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: 2015-
|
12
|
+
date: 2015-09-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -81,6 +81,20 @@ dependencies:
|
|
81
81
|
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: 1.4.0
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: mysql2
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 0.3.20
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: 0.3.20
|
84
98
|
- !ruby/object:Gem::Dependency
|
85
99
|
name: rspec-rails
|
86
100
|
requirement: !ruby/object:Gem::Requirement
|
@@ -366,7 +380,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
366
380
|
version: '0'
|
367
381
|
requirements: []
|
368
382
|
rubyforge_project:
|
369
|
-
rubygems_version: 2.4.
|
383
|
+
rubygems_version: 2.4.6
|
370
384
|
signing_key:
|
371
385
|
specification_version: 4
|
372
386
|
summary: Github Statistics
|