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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83f3deb64dae6bfd29c937bf3c0fa39467a47925
4
- data.tar.gz: 7a82c9c19b911572595e3c1dc874b4dde73f2c4a
3
+ metadata.gz: 0c5e6b92c13061935666386dc97b39014b414cdb
4
+ data.tar.gz: a8e152dac06e4e784c91c119fdac4c38b71f518c
5
5
  SHA512:
6
- metadata.gz: 5e50d5433acd9f4653acca541e1cf9d10d9ef15af5e99d60974ee7dfe14090c867ca6dd3aa1b1176545392299f6f8246b8f332480cb92e39c68ca1c107bb3def
7
- data.tar.gz: 5cab648078055b63104d1dc82dafb7a859e4cc1532737c8f40652304b4923e3f055994bb8823736723c4166836991311d03ee877998c6e9b10d1a67896218f20
6
+ metadata.gz: e9efabd8c07c039f5d0173873aea394b5c6d2a4bd8080f872a512a80598964b2796544a8bdbbaf6468acf2b8e526962d58bc8d7611ceeaa67092777518ce7799
7
+ data.tar.gz: 7b4ba3091ff307c5614ee522405a1d708ca5b94f85121b836969789737a3f5ffd6904763568c825f5ab8788d6737e7b6f5f28f855850731cb715ac99ae50316b
data/README.md CHANGED
@@ -14,6 +14,7 @@ Kill Bill compatibility
14
14
  | 0.4.y | 0.16.z |
15
15
  | 0.5.y | 0.18.z (Rails 4) |
16
16
  | 0.6.y | 0.18.z (Rails 5) |
17
+ | 1.x.y | 0.19.z |
17
18
 
18
19
  Getting Started
19
20
  ===============
@@ -1,3 +1,3 @@
1
1
  module Kanaui
2
- VERSION = "0.6.1"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -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'
@@ -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.6.1
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-04-12 00:00:00.000000000 Z
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: []