koala 3.0.0.rc → 3.0.0.rc2
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/ISSUE_TEMPLATE +4 -2
- data/PULL_REQUEST_TEMPLATE +3 -1
- data/changelog.md +3 -0
- data/code_of_conduct.md +64 -12
- data/koala.gemspec +1 -1
- data/lib/koala/version.rb +1 -1
- metadata +4 -7
- data/.autotest +0 -12
- data/Guardfile +0 -6
- data/autotest/discover.rb +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0eac39f026e6d23a571e10c1015b6979dc91f972
|
|
4
|
+
data.tar.gz: db216bdd744f86a1d807c5aa348f6f6d3d235968
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa8a8de920d8376722f99b625e2fc00ce61a3ee2d7734cd2cdc05bc48747864ae5d210d35f656f63b11e8dd9d84e4afac8a1eeaa304ae9321c5006961da9853c
|
|
7
|
+
data.tar.gz: 6f7582d696bfab86a29e595d14fa9c34f643eacd1939f7674a7e8672620d63ad8aff75ef1703f9822f6ab4416f197952960c1905a52595ba2e7415f555074c5c
|
data/ISSUE_TEMPLATE
CHANGED
|
@@ -8,16 +8,18 @@ Koala is a labor of love both from me and from the awesome community members who
|
|
|
8
8
|
|
|
9
9
|
If you have questions about using the Facebook API, [facebook.stackoverflow.com](http://facebook.stackoverflow.com) is a great resource.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
_For code issues:_
|
|
12
12
|
|
|
13
13
|
[ ] What I'm doing works on the [Graph API explorer](https://developers.facebook.com/tools/explorer/)/curl/another tool.
|
|
14
14
|
|
|
15
15
|
Seeing an example of what works helps diagnose what doesn't work.
|
|
16
16
|
|
|
17
17
|
[ ] I'm using the newest version
|
|
18
|
-
|
|
19
18
|
[ ] Here's code to replicate the issue:
|
|
20
19
|
|
|
21
20
|
Obviously not all code can be shared -- feel free to put variables in place of any sensitive information and describe what should be used to replicate it.
|
|
22
21
|
|
|
23
22
|
Thanks for submitting an issue! Looking forward to working with you to figure it out.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Note: Koala has a [code of conduct](https://github.com/arsduo/koala/blob/master/code_of_conduct.md). Check it out.
|
data/PULL_REQUEST_TEMPLATE
CHANGED
|
@@ -6,4 +6,6 @@ Here are a few things that will help get your pull request merged in quickly. No
|
|
|
6
6
|
[ ] The live tests pass for my changes (`LIVE=true rspec` -- unrelated failures are okay).
|
|
7
7
|
[ ] The PR is based on the most recent master commit and has no merge conflicts.
|
|
8
8
|
|
|
9
|
-
If you have any questions, feel free to open an issue or comment on your PR!
|
|
9
|
+
If you have any questions, feel free to open an issue or comment on your PR!
|
|
10
|
+
|
|
11
|
+
Note: Koala has a [code of conduct](https://github.com/arsduo/koala/blob/master/code_of_conduct.md). Check it out.
|
data/changelog.md
CHANGED
|
@@ -48,6 +48,8 @@ Internal improvements:
|
|
|
48
48
|
* Use the more secure JSON.parse instead of JSON.load (thanks, lautis!) (#567)
|
|
49
49
|
* Use JSON's quirks_mode option to remove hacky JSON hack (#573 -- thanks sakuro for the
|
|
50
50
|
suggestion!)
|
|
51
|
+
* The gemspec now allows both JSON 1.8 and 2.0 (#596) (thanks, pawandubey!)
|
|
52
|
+
* Remove Autotest and Guard references (no longer used/needed)
|
|
51
53
|
|
|
52
54
|
Testing improvements:
|
|
53
55
|
|
|
@@ -56,6 +58,7 @@ Testing improvements:
|
|
|
56
58
|
Others:
|
|
57
59
|
|
|
58
60
|
* Added an issue and pull request template
|
|
61
|
+
* Updated Code of Conduct to 1.4
|
|
59
62
|
|
|
60
63
|
v2.5.0 (2017-02-17)
|
|
61
64
|
======
|
data/code_of_conduct.md
CHANGED
|
@@ -1,22 +1,74 @@
|
|
|
1
|
-
# Contributor Code of Conduct
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Our Pledge
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
|
10
|
+
orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
6
22
|
|
|
7
23
|
Examples of unacceptable behavior by participants include:
|
|
8
24
|
|
|
9
|
-
* The use of sexualized language or imagery
|
|
10
|
-
|
|
11
|
-
* Trolling
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
12
28
|
* Public or private harassment
|
|
13
|
-
* Publishing
|
|
14
|
-
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at [INSERT EMAIL ADDRESS]. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
15
63
|
|
|
16
|
-
Project maintainers
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
17
67
|
|
|
18
|
-
|
|
68
|
+
## Attribution
|
|
19
69
|
|
|
20
|
-
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
|
21
72
|
|
|
22
|
-
|
|
73
|
+
[homepage]: http://contributor-covenant.org
|
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/koala.gemspec
CHANGED
data/lib/koala/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: koala
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.0.
|
|
4
|
+
version: 3.0.0.rc2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Koppel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '1.8'
|
|
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: '
|
|
54
|
+
version: '1.8'
|
|
55
55
|
description: Koala is a lightweight, flexible Ruby SDK for Facebook. It allows read/write
|
|
56
56
|
access to the social graph via the Graph and REST APIs, as well as support for realtime
|
|
57
57
|
updates and OAuth and Facebook Connect authentication. Koala is fully tested and
|
|
@@ -64,19 +64,16 @@ extra_rdoc_files:
|
|
|
64
64
|
- readme.md
|
|
65
65
|
- changelog.md
|
|
66
66
|
files:
|
|
67
|
-
- ".autotest"
|
|
68
67
|
- ".gitignore"
|
|
69
68
|
- ".rspec"
|
|
70
69
|
- ".travis.yml"
|
|
71
70
|
- ".yardopts"
|
|
72
71
|
- Gemfile
|
|
73
|
-
- Guardfile
|
|
74
72
|
- ISSUE_TEMPLATE
|
|
75
73
|
- LICENSE
|
|
76
74
|
- Manifest
|
|
77
75
|
- PULL_REQUEST_TEMPLATE
|
|
78
76
|
- Rakefile
|
|
79
|
-
- autotest/discover.rb
|
|
80
77
|
- changelog.md
|
|
81
78
|
- code_of_conduct.md
|
|
82
79
|
- koala.gemspec
|
data/.autotest
DELETED
data/Guardfile
DELETED
data/autotest/discover.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Autotest.add_discovery { "rspec2" }
|