bw_status_board_api 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/bw_status_board_api.gemspec +3 -2
- data/lib/bw_status_board_api/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d4e10bfbdc887a9c216832d2df5335404cc109d
|
4
|
+
data.tar.gz: 64d7d70ad0a058b6032c9f0f3361cac2bed11247
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91b594b915cbc14df17060c2abf5be2d8b8e23f76d9e459ae3fdb9fed72442fbac8443c94dc3a3fbde7f92de5e6d4fe6e3c4914362d0a86c71dc46a26673b920
|
7
|
+
data.tar.gz: 08405b3a7d074641bb670ca5ab35b863eb3333ccb2462c784e82063dfc32f3264a58bd8d21f1e01f357ac0fa97cb144ddb158605ef1bb0f3bc2c19ba1b32cf14
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## 2.0.1
|
5
|
+
### Updated
|
6
|
+
* Updated oj gem to latest version 2.10.4
|
7
|
+
* Updated the gemspec to set date automatically
|
8
|
+
|
4
9
|
## 2.0.0
|
5
10
|
### Updated
|
6
11
|
* Updated endpoints following latest updates to status board api endpoints
|
data/bw_status_board_api.gemspec
CHANGED
@@ -1,9 +1,10 @@
|
|
1
|
+
require 'date'
|
1
2
|
require File.dirname(__FILE__) + '/lib/bw_status_board_api/version'
|
2
3
|
|
3
4
|
Gem::Specification.new do |s|
|
4
5
|
s.name = 'bw_status_board_api'
|
5
6
|
s.version = BWStatusBoardAPI::VERSION
|
6
|
-
s.date =
|
7
|
+
s.date = Date.today.to_s
|
7
8
|
s.summary = 'Brandwatch Status Board API Wrapper'
|
8
9
|
s.description = 'A Ruby wrapper for the Brandwatch Status Board'
|
9
10
|
s.author = 'Jonathan Chrisp'
|
@@ -19,7 +20,7 @@ Gem::Specification.new do |s|
|
|
19
20
|
s.add_runtime_dependency 'faraday', '~> 0.9.0'
|
20
21
|
s.add_runtime_dependency 'faraday_middleware', '~> 0.9.1'
|
21
22
|
s.add_runtime_dependency 'faraday_middleware-parse_oj', '~> 0.3.0'
|
22
|
-
s.add_runtime_dependency 'oj', '~> 2.10.
|
23
|
+
s.add_runtime_dependency 'oj', '~> 2.10.4'
|
23
24
|
|
24
25
|
s.files = `git ls-files`.split("\n")
|
25
26
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bw_status_board_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Chrisp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 2.10.
|
103
|
+
version: 2.10.4
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 2.10.
|
110
|
+
version: 2.10.4
|
111
111
|
description: A Ruby wrapper for the Brandwatch Status Board
|
112
112
|
email: jonathan@brandwatch.com
|
113
113
|
executables:
|
@@ -163,10 +163,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
version: '0'
|
164
164
|
requirements: []
|
165
165
|
rubyforge_project:
|
166
|
-
rubygems_version: 2.
|
166
|
+
rubygems_version: 2.4.2
|
167
167
|
signing_key:
|
168
168
|
specification_version: 4
|
169
169
|
summary: Brandwatch Status Board API Wrapper
|
170
170
|
test_files:
|
171
171
|
- spec/bw_status_board_api_spec.rb
|
172
172
|
- spec/helper.rb
|
173
|
+
has_rdoc:
|