koala 3.0.0.rc → 3.0.0.rc2

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
  SHA1:
3
- metadata.gz: f4f00f2411c9a02ce7505dd449f8d2ae4782ebd5
4
- data.tar.gz: 3d54abde36f96607babc134fd48ceb86935d4d19
3
+ metadata.gz: 0eac39f026e6d23a571e10c1015b6979dc91f972
4
+ data.tar.gz: db216bdd744f86a1d807c5aa348f6f6d3d235968
5
5
  SHA512:
6
- metadata.gz: 89f355e9ad1162a1a41ded724e27e878a542139941893985528e784f0f8db8b5448bed368670bb2a8a7cfc47a8a0315050c22840cd54a0927e035b284d71c46c
7
- data.tar.gz: 716ce03878f4bf59f67ddd959d1fc3182deffe68c5d25b6aac74b434fccc58423fd0c8e55304406c74dea3b81d99e42f1a9e44f73c8a009fa1887484f580a767
6
+ metadata.gz: fa8a8de920d8376722f99b625e2fc00ce61a3ee2d7734cd2cdc05bc48747864ae5d210d35f656f63b11e8dd9d84e4afac8a1eeaa304ae9321c5006961da9853c
7
+ data.tar.gz: 6f7582d696bfab86a29e595d14fa9c34f643eacd1939f7674a7e8672620d63ad8aff75ef1703f9822f6ab4416f197952960c1905a52595ba2e7415f555074c5c
@@ -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
- For code issues:
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.
@@ -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.
@@ -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
  ======
@@ -1,22 +1,74 @@
1
- # Contributor Code of Conduct
1
+ # Contributor Covenant Code of Conduct
2
2
 
3
- As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
3
+ ## Our Pledge
4
4
 
5
- We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
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
- * Personal attacks
11
- * Trolling or insulting/derogatory comments
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 other's private information, such as physical or electronic addresses, without explicit permission
14
- * Other unethical or unprofessional conduct.
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 have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
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
- This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
68
+ ## Attribution
19
69
 
20
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
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
- This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
@@ -25,5 +25,5 @@ Gem::Specification.new do |gem|
25
25
 
26
26
  gem.add_runtime_dependency("faraday")
27
27
  gem.add_runtime_dependency("addressable")
28
- gem.add_runtime_dependency("json", ">= 2.0")
28
+ gem.add_runtime_dependency("json", ">= 1.8")
29
29
  end
@@ -1,3 +1,3 @@
1
1
  module Koala
2
- VERSION = "3.0.0.rc"
2
+ VERSION = "3.0.0.rc2"
3
3
  end
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.rc
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-06 00:00:00.000000000 Z
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: '2.0'
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: '2.0'
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
@@ -1,12 +0,0 @@
1
- # Override autotest default magic to rerun all tests every time a
2
- # change is detected on the file system.
3
- class Autotest
4
-
5
- def get_to_green
6
- begin
7
- rerun_all_tests
8
- wait_for_changes unless all_good
9
- end until all_good
10
- end
11
-
12
- end
data/Guardfile DELETED
@@ -1,6 +0,0 @@
1
- guard 'rspec', :version => 2 do
2
- watch(%r{^spec/.+_spec\.rb$})
3
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
4
- watch('spec/spec_helper.rb') { "spec" }
5
- end
6
-
@@ -1 +0,0 @@
1
- Autotest.add_discovery { "rspec2" }