nearmiss-ruby 1.0.0 → 1.0.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/README.md +18 -0
- data/lib/nearmiss-ruby/version.rb +2 -2
- data/nearmiss-ruby.gemspec +7 -2
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc475b62dc5ae1de962481ca0eb29ef689c4fc0d
|
|
4
|
+
data.tar.gz: 0b553e592377eb27d5cd03155238cbf839942ab1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 692476657b076f48ff6f0da311c0036bdbf87a34dea03c3b1dbb2bf0ff89a8b823951288956e5bf4d4b4043a95409e9fe2fc8c59d86e64fcdd8c787632131e49
|
|
7
|
+
data.tar.gz: 3c5db1ddef1acd426b8afcab536d9c8bb743cb38a52621e59efa1d9dcb93d174108e5963afb67c911a10e68e4feb3eee0e3dbdb33011944939464bbc01b2d699
|
data/README.md
CHANGED
|
@@ -182,6 +182,24 @@ If you need help installing or using the library, please contact Nearmiss Suppor
|
|
|
182
182
|
|
|
183
183
|
If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!
|
|
184
184
|
|
|
185
|
+
## Development
|
|
186
|
+
|
|
187
|
+
From the terminal call:
|
|
188
|
+
``` unix
|
|
189
|
+
make install
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
To build the gem, call the following from the terminal:
|
|
193
|
+
``` unix
|
|
194
|
+
gem build nearmiss-ruby.gemspec
|
|
195
|
+
```
|
|
196
|
+
To update to the RubyGem server, call:
|
|
197
|
+
``` unix
|
|
198
|
+
make deploy
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
185
203
|
## More Information
|
|
186
204
|
|
|
187
205
|
There are more detailed examples in the included [examples][examples]
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module Nearmiss
|
|
2
|
-
VERSION = "
|
|
3
|
-
end
|
|
2
|
+
VERSION = "1.0.1"
|
|
3
|
+
end
|
data/nearmiss-ruby.gemspec
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'nearmiss-ruby/version'
|
|
5
|
+
|
|
1
6
|
Gem::Specification.new do |s|
|
|
2
7
|
s.name = %q{nearmiss-ruby}
|
|
3
|
-
s.version =
|
|
8
|
+
s.version = Nearmiss::VERSION.dup
|
|
4
9
|
s.platform = Gem::Platform::RUBY
|
|
5
10
|
s.license = 'MIT'
|
|
6
11
|
|
|
@@ -15,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
15
20
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
16
21
|
s.require_paths = ["lib"]
|
|
17
22
|
s.rubyforge_project = %q{nearmiss-ruby}
|
|
18
|
-
s.rubygems_version = %q{1.
|
|
23
|
+
s.rubygems_version = %q{1.3.5}
|
|
19
24
|
s.summary = %q{A wrapper around the nearmiss.com API.}
|
|
20
25
|
s.test_files = Dir.glob("spec/**/*")
|
|
21
26
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nearmiss-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Markus Klooth
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sawyer
|
|
@@ -112,4 +112,3 @@ signing_key:
|
|
|
112
112
|
specification_version: 4
|
|
113
113
|
summary: A wrapper around the nearmiss.com API.
|
|
114
114
|
test_files: []
|
|
115
|
-
has_rdoc:
|