hubstats 1.0.0.beta2 → 1.0.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hubstats/events_handler.rb +2 -2
- data/lib/hubstats/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dd2a31cc4f6046f0d1bee94391a1f60378a76388d2d426ab6b8d51ee452f2dc
|
4
|
+
data.tar.gz: 63999cfe6eb363c30ebc0acabe655dd2723e61a89397512221f4053cc6fe93b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0788fe29b54206591a28897cc24f8f58a2abb40a2974a0e919f7620bf09f242efd76f5add24a564f1a9b2891a821b5882bb62db396b401fb8538778caf49b35
|
7
|
+
data.tar.gz: 119420b7746fe73dad252ed7954124ae2b9cd3bc9ef0dd9f48d3933edd7f1899dec38aeeba565bb1656fc248ee2d3559a426670e0835a190f37577875e69822f
|
@@ -91,8 +91,8 @@ module Hubstats
|
|
91
91
|
repo = payload[:repository]
|
92
92
|
|
93
93
|
if payload[:github_action] == "created" # it's a new repository
|
94
|
-
Hubstats::Repo.create_or_update
|
95
|
-
Hubstats::GithubAPI.create_repo_hook(repo)
|
94
|
+
Hubstats::Repo.create_or_update(repo.with_indifferent_access)
|
95
|
+
Hubstats::GithubAPI.create_repo_hook(repo.with_indifferent_access)
|
96
96
|
# The hook was probably already made when we made the repository,
|
97
97
|
# but we'll put this here just in case
|
98
98
|
end
|
data/lib/hubstats/version.rb
CHANGED