kanaui 0.6.1 → 1.0.0
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 +1 -0
- data/lib/kanaui/version.rb +1 -1
- data/test/dummy/config/initializers/killbill_client.rb +3 -3
- data/test/dummy/log/test.log +11 -0
- metadata +30 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c5e6b92c13061935666386dc97b39014b414cdb
|
|
4
|
+
data.tar.gz: a8e152dac06e4e784c91c119fdac4c38b71f518c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9efabd8c07c039f5d0173873aea394b5c6d2a4bd8080f872a512a80598964b2796544a8bdbbaf6468acf2b8e526962d58bc8d7611ceeaa67092777518ce7799
|
|
7
|
+
data.tar.gz: 7b4ba3091ff307c5614ee522405a1d708ca5b94f85121b836969789737a3f5ffd6904763568c825f5ab8788d6737e7b6f5f28f855850731cb715ac99ae50316b
|
data/README.md
CHANGED
data/lib/kanaui/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
KillBillClient.url = 'http://127.0.0.1:8080/'
|
|
2
|
-
KillBillClient.api_key = 'bob'
|
|
3
|
-
KillBillClient.api_secret = 'lazar'
|
|
1
|
+
KillBillClient.url = ENV['KILLBILL_URL'] || 'http://127.0.0.1:8080/'
|
|
2
|
+
KillBillClient.api_key = ENV['KILLBILL_API_KEY'] || 'bob'
|
|
3
|
+
KillBillClient.api_secret = ENV['KILLBILL_API_SECRET'] || 'lazar'
|
data/test/dummy/log/test.log
CHANGED
|
@@ -9,3 +9,14 @@ Processing by Kanaui::DashboardController#index as HTML
|
|
|
9
9
|
Request method='GET', uri='http://127.0.0.1:8080/plugins/killbill-analytics/reports'
|
|
10
10
|
accept='application/json', user-agent='killbill/2.2.2; ruby 2.4.2p198 (2017-09-14 revision 59899) [x86_64-linux]', accept-encoding='gzip;q=1.0,deflate;q=0.6,identity;q=0.3', x-killbill-apikey='bob', x-killbill-apisecret='lazar', authorization='Basic [FILTERED]'
|
|
11
11
|
Completed 500 Internal Server Error in 1ms
|
|
12
|
+
-----------------------------------------------
|
|
13
|
+
NavigationTest: test_can_see_the_dashboard_page
|
|
14
|
+
-----------------------------------------------
|
|
15
|
+
Started GET "/kanaui" for 127.0.0.1 at 2018-05-18 09:28:21 +0000
|
|
16
|
+
Processing by Kanaui::DashboardController#index as HTML
|
|
17
|
+
Request method='GET', uri='http://127.0.0.1:8080/plugins/killbill-analytics/reports'
|
|
18
|
+
accept='application/json', user-agent='killbill/2.2.3; ruby 2.4.2p198 (2017-09-14 revision 59899) [x86_64-linux]', accept-encoding='gzip;q=1.0,deflate;q=0.6,identity;q=0.3', x-killbill-apikey='bob', x-killbill-apisecret='lazar', authorization='Basic [FILTERED]'
|
|
19
|
+
Completed 500 Internal Server Error in 1ms
|
|
20
|
+
----------------------
|
|
21
|
+
KanauiTest: test_truth
|
|
22
|
+
----------------------
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kanaui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kill Bill core team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -136,6 +136,20 @@ dependencies:
|
|
|
136
136
|
- - "~>"
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '1.6'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: killbill-client
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - "~>"
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '2.2'
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - "~>"
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '2.2'
|
|
139
153
|
- !ruby/object:Gem::Dependency
|
|
140
154
|
name: rake
|
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -178,6 +192,20 @@ dependencies:
|
|
|
178
192
|
- - ">="
|
|
179
193
|
- !ruby/object:Gem::Version
|
|
180
194
|
version: '0'
|
|
195
|
+
- !ruby/object:Gem::Dependency
|
|
196
|
+
name: json
|
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
|
198
|
+
requirements:
|
|
199
|
+
- - ">="
|
|
200
|
+
- !ruby/object:Gem::Version
|
|
201
|
+
version: 1.8.6
|
|
202
|
+
type: :development
|
|
203
|
+
prerelease: false
|
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - ">="
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: 1.8.6
|
|
181
209
|
description: Rails UI plugin for the Analytics plugin.
|
|
182
210
|
email: killbilling-users@googlegroups.com
|
|
183
211
|
executables: []
|