killbill-kpm 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -2
  3. data/lib/kpm/version.rb +1 -1
  4. metadata +38 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 639a77986b193792838799a794256dd8a3dd237e
4
- data.tar.gz: 849578d43f5eb33a3e701874b9e7e0546481f018
3
+ metadata.gz: a7288e31013f21acf1e11d7df69ff01fb3b5e67e
4
+ data.tar.gz: 3cb3c953099c25e77a71a7b1785d9c816fe389f7
5
5
  SHA512:
6
- metadata.gz: 6479ee0a1505f7e521385b9ab2e9766df9730aac95ef5b0a0ac802b046495fdc4741aeabc325bcf5b7bb3f10576b40a9430b33d6c9c71f9d6f571793c6fa3de1
7
- data.tar.gz: 33d3997c128a30c26fb08dc842e43b28b450b47e55c6e091d551791870d924d67c2178d628aec612b085eb508ec08d88df5910f3c0c749c7cffb6ea7f37f1ffe
6
+ metadata.gz: c64bdcf508a90eba5cda657b435f7390afe2b6fdae8da2a6f695b3adefa4680779a3e081ea5d67622493c87790591e0b60774efd08423568d01ecaffcae959fa
7
+ data.tar.gz: 44933fb023f1fe5fcb7719246352432d80f521ccced0df76dc812c63eebc4c9153fcad79e21ecab2d0f12c14afc12a8d0a63577417215a7ac33eb1e69c4df58b
data/README.md CHANGED
@@ -1,2 +1,14 @@
1
- # killbill-kpm-ui
2
- Rails mountable engine to manage the KPM plugin
1
+ Overview
2
+ ========
3
+
4
+ Rails mountable engine to manage the KPM plugin.
5
+
6
+ See [killbill-admin-ui-standalone](https://github.com/killbill/killbill-admin-ui-standalone) to get started with the Kill Bill Admin UI.
7
+
8
+ Kill Bill compatibility
9
+ -----------------------
10
+
11
+ | KPM UI version | Kill Bill version |
12
+ | -------------: | ----------------: |
13
+ | 0.1.y | 0.16.z |
14
+ | 0.2.y | 0.18.z |
@@ -1,3 +1,3 @@
1
1
  module KPM
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-kpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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: 2015-12-18 00:00:00.000000000 Z
11
+ date: 2016-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -156,12 +156,12 @@ dependencies:
156
156
  requirements:
157
157
  - - ~>
158
158
  - !ruby/object:Gem::Version
159
- version: '0.22'
159
+ version: '1.0'
160
160
  requirement: !ruby/object:Gem::Requirement
161
161
  requirements:
162
162
  - - ~>
163
163
  - !ruby/object:Gem::Version
164
- version: '0.22'
164
+ version: '1.0'
165
165
  prerelease: false
166
166
  type: :runtime
167
167
  - !ruby/object:Gem::Dependency
@@ -324,63 +324,63 @@ executables: []
324
324
  extensions: []
325
325
  extra_rdoc_files: []
326
326
  files:
327
- - app/controllers/kpm/engine_controller.rb
328
- - app/controllers/kpm/plugins_controller.rb
329
- - app/controllers/kpm/nodes_info_controller.rb
327
+ - MIT-LICENSE
328
+ - README.md
329
+ - Rakefile
330
+ - app/assets/javascripts/application.js
331
+ - app/assets/javascripts/kpm/kpm.js
330
332
  - app/assets/stylesheets/application.css
331
333
  - app/assets/stylesheets/bootstrap_and_overrides.css
332
334
  - app/assets/stylesheets/kpm/kpm.css
333
- - app/assets/javascripts/application.js
334
- - app/assets/javascripts/kpm/kpm.js
335
+ - app/controllers/kpm/engine_controller.rb
336
+ - app/controllers/kpm/nodes_info_controller.rb
337
+ - app/controllers/kpm/plugins_controller.rb
338
+ - app/helpers/kpm/application_helper.rb
339
+ - app/views/kpm/layouts/kpm_application.html.erb
340
+ - app/views/kpm/nodes_info/_logs_table.html.erb
335
341
  - app/views/kpm/nodes_info/_nodes_table.html.erb
336
342
  - app/views/kpm/nodes_info/index.html.erb
337
343
  - app/views/kpm/nodes_info/index.js.erb
338
- - app/views/kpm/nodes_info/_logs_table.html.erb
344
+ - app/views/kpm/plugins/_form.html.erb
339
345
  - app/views/kpm/plugins/_plugins_table.html.erb
340
346
  - app/views/kpm/plugins/index.html.erb
341
- - app/views/kpm/plugins/_form.html.erb
342
- - app/views/kpm/layouts/kpm_application.html.erb
343
- - app/helpers/kpm/application_helper.rb
344
347
  - config/routes.rb
345
348
  - lib/kpm.rb
346
349
  - lib/kpm/client.rb
347
350
  - lib/kpm/engine.rb
348
351
  - lib/kpm/version.rb
349
352
  - lib/tasks/kpm_tasks.rake
350
- - MIT-LICENSE
351
- - Rakefile
352
- - README.md
353
- - test/test_helper.rb
354
- - test/kpm_test.rb
355
- - test/integration/navigation_test.rb
356
- - test/dummy/Rakefile
357
353
  - test/dummy/README.rdoc
354
+ - test/dummy/Rakefile
355
+ - test/dummy/app/controllers/application_controller.rb
356
+ - test/dummy/app/helpers/application_helper.rb
357
+ - test/dummy/bin/bundle
358
+ - test/dummy/bin/rails
359
+ - test/dummy/bin/rake
360
+ - test/dummy/bin/setup
358
361
  - test/dummy/config.ru
359
- - test/dummy/config/secrets.yml
360
- - test/dummy/config/environment.rb
361
- - test/dummy/config/routes.rb
362
- - test/dummy/config/database.yml
363
- - test/dummy/config/boot.rb
364
362
  - test/dummy/config/application.rb
365
- - test/dummy/config/locales/en.yml
366
- - test/dummy/config/environments/test.rb
367
- - test/dummy/config/environments/production.rb
363
+ - test/dummy/config/boot.rb
364
+ - test/dummy/config/database.yml
365
+ - test/dummy/config/environment.rb
368
366
  - test/dummy/config/environments/development.rb
369
- - test/dummy/config/initializers/inflections.rb
367
+ - test/dummy/config/environments/production.rb
368
+ - test/dummy/config/environments/test.rb
370
369
  - test/dummy/config/initializers/assets.rb
371
370
  - test/dummy/config/initializers/backtrace_silencers.rb
372
- - test/dummy/config/initializers/killbill_client.rb
371
+ - test/dummy/config/initializers/cookies_serializer.rb
373
372
  - test/dummy/config/initializers/filter_parameter_logging.rb
373
+ - test/dummy/config/initializers/inflections.rb
374
+ - test/dummy/config/initializers/killbill_client.rb
374
375
  - test/dummy/config/initializers/mime_types.rb
375
- - test/dummy/config/initializers/cookies_serializer.rb
376
376
  - test/dummy/config/initializers/session_store.rb
377
377
  - test/dummy/config/initializers/wrap_parameters.rb
378
- - test/dummy/app/controllers/application_controller.rb
379
- - test/dummy/app/helpers/application_helper.rb
380
- - test/dummy/bin/rake
381
- - test/dummy/bin/bundle
382
- - test/dummy/bin/setup
383
- - test/dummy/bin/rails
378
+ - test/dummy/config/locales/en.yml
379
+ - test/dummy/config/routes.rb
380
+ - test/dummy/config/secrets.yml
381
+ - test/integration/navigation_test.rb
382
+ - test/kpm_test.rb
383
+ - test/test_helper.rb
384
384
  homepage: http://www.killbill.io
385
385
  licenses:
386
386
  - MIT
@@ -401,7 +401,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
401
401
  version: '0'
402
402
  requirements: []
403
403
  rubyforge_project:
404
- rubygems_version: 2.1.9
404
+ rubygems_version: 2.4.6
405
405
  signing_key:
406
406
  specification_version: 4
407
407
  summary: Kill Bill KPM UI mountable engine