volunteermatch 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/volunteermatch/version.rb +1 -1
- data/volunteermatch.gemspec +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41efb0be064327dc9679bff6dd519b82437b538f
|
4
|
+
data.tar.gz: a410a4a9384f70ba56d9ae0fef6e62bee6def425
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 339997cc89eb66d4ec24189dd675aea2ffd12b9fcecd7c2ba964cd6801da799ad59ed40eff762c657272f357a235a776578f6df1c9cbeb648fecfdd3d9017034
|
7
|
+
data.tar.gz: 8cbdeaf41da423b929997f51097e7ef7c6bb524f5f09896d21484e7eae656c5095b870deb94430fe97f025181c13d0853267d3719e1e9103dde75e407cc2afff
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# The VolunteerMatch Public-Use API Gem
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/volunteermatch.svg)](https://badge.fury.io/rb/volunteermatch)
|
4
|
+
|
3
5
|
VolunteerMatch is a lightweight Ruby wrapper that queries VolunteerMatch's Public-Use API for searching information on nonprofit organizations and active volunteering opportunities.
|
4
6
|
|
5
7
|
This gem is inspired by the Ruby API example provided in the [vm-contrib repo](https://github.com/volunteermatch/vm-contrib). Queries are configured based on the attributes applied and return a collection of JSON results.
|
data/volunteermatch.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{A Ruby wrapper for VolunteerMatch's Public-Use API.}
|
13
13
|
spec.description = %q{A lightweight Ruby wrapper that queries VolunteerMatch's Public-Use API for searching information on nonprofit organizations and active volunteering opportunities.}
|
14
|
-
spec.homepage = "https://github.com/evanscloud/
|
14
|
+
spec.homepage = "https://github.com/evanscloud/volunteermatch"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
@@ -20,6 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.bindir = "exe"
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
22
|
spec.require_paths = ["lib"]
|
23
|
+
spec.required_ruby_version = '>= 2.2.6'
|
23
24
|
|
24
25
|
spec.add_development_dependency "bundler", "~> 1.14"
|
25
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: volunteermatch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Ng
|
@@ -94,7 +94,7 @@ files:
|
|
94
94
|
- lib/volunteermatch/client.rb
|
95
95
|
- lib/volunteermatch/version.rb
|
96
96
|
- volunteermatch.gemspec
|
97
|
-
homepage: https://github.com/evanscloud/
|
97
|
+
homepage: https://github.com/evanscloud/volunteermatch
|
98
98
|
licenses:
|
99
99
|
- MIT
|
100
100
|
metadata: {}
|
@@ -106,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
109
|
+
version: 2.2.6
|
110
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
111
|
requirements:
|
112
112
|
- - ">="
|