github-calendar 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- metadata +16 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1db860b32f94ff0185c51d5f4119ab119a6e03d1
|
|
4
|
+
data.tar.gz: 8dc772acfeb8f04a8d5c3d5ec6c416a41fe33da3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee7910378e381f8cd798c52fe73473d57d6fa9bf101e8f004df01f4df68d33e22ae58ef99e35a4f16c431d759229c8558135fc3c6280d5b883a22f2cb64e6dc7
|
|
7
|
+
data.tar.gz: 68073efde1c5b1a84bcef4ceed875f4d311443e161a19076469248fbb1817fa56c4e9fa41ddc045448f073bc628acdc507720a45b5aea190a53b6183a7c0b8e7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## Version 1
|
|
3
|
+
### Version 1.2.1
|
|
4
|
+
* Pessimistic version requirements. Bump dependencies.
|
|
5
|
+
* License as MIT.
|
|
6
|
+
|
|
3
7
|
### Version 1.2.0
|
|
4
8
|
* Switch to Curb instead of OpenURI for the `#get_page_source` method, due to possible conflicted `Kernel#open` monkeypatches from Sinatra and OpenURI (#4, ghuls-web#15)
|
|
5
9
|
* Improve reliability of `#get_daily`, `#get_weekly`, and `#get_monthly` by properly using Nokogiri's Element methods.
|
metadata
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github-calendar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eli Foster
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.6.7
|
|
19
|
+
version: 1.6.7
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.6.7
|
|
26
|
+
version: 1.6.7
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: string-utility
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.7
|
|
33
|
+
version: '2.7'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.7
|
|
40
|
+
version: '2.7'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: curb
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - "
|
|
45
|
+
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.9
|
|
47
|
+
version: '0.9'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - "
|
|
52
|
+
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.9
|
|
54
|
+
version: '0.9'
|
|
55
55
|
description: A library that allows for quick HTML parsing of GitHub user profile contribution
|
|
56
56
|
calendars. This project is part of the GitHub User Language Statistics project.
|
|
57
57
|
email: elifosterwy@gmail.com
|
|
@@ -63,7 +63,8 @@ files:
|
|
|
63
63
|
- lib/github/calendar.rb
|
|
64
64
|
- lib/github/exceptions.rb
|
|
65
65
|
homepage: https://github.com/ghuls-apps/github-calendar-api
|
|
66
|
-
licenses:
|
|
66
|
+
licenses:
|
|
67
|
+
- MIT
|
|
67
68
|
metadata: {}
|
|
68
69
|
post_install_message:
|
|
69
70
|
rdoc_options: []
|