kadmin 1.0.8 → 1.0.9
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 +5 -5
- data/README.md +23 -0
- data/lib/kadmin/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: eff92699a130e18fba90ad39a18ace224525efff
|
|
4
|
+
data.tar.gz: 3202fc802e89c02a72d4c8b50d676bce010a5e15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95b1476d0e4a4cf78376f85a7b131b07cd77a960fe2eb33f2f5c3567f6218aeda3ba10bc5f5180ef6843b7482e9f20f118de1f7dce821765404f7dde8368129e
|
|
7
|
+
data.tar.gz: 3ca05a7b9230563ac965287cb47873277c881867024d73de77a04275c130803f95ea0d4eb292749df2dd916777cb51fe6dd44e1063a1a5d03dece7e19672f968
|
data/README.md
CHANGED
|
@@ -15,6 +15,29 @@ gem 'kadmin', git: 'git@github.com:barcoo/kadmin.git'
|
|
|
15
15
|
|
|
16
16
|
## Development
|
|
17
17
|
|
|
18
|
+
### Use local gem
|
|
19
|
+
In case you want to test changes locally before commiting to the repository you can setup your environment to use the local version instead:
|
|
20
|
+
```bash
|
|
21
|
+
bundle config local.kadmin $YOUR_LOCAL_KADMIN_PATH/
|
|
22
|
+
```
|
|
23
|
+
change Gemfile to:
|
|
24
|
+
```ruby
|
|
25
|
+
gem 'kadmin', git: 'https://github.com/barcoo/kadmin', branch: "master" # change branch to your working branch name
|
|
26
|
+
```
|
|
27
|
+
```bash
|
|
28
|
+
bundle install
|
|
29
|
+
```
|
|
30
|
+
you should see something similiar to:
|
|
31
|
+
'Using kadmin 1.0.8 from https://github.com/barcoo/kadmin (at $YOUR_LOCAL_KADMIN_PATH@9203125)'
|
|
32
|
+
|
|
33
|
+
When you're finished remove the local setup by changing your Gemfile back and execute
|
|
34
|
+
```bash
|
|
35
|
+
bundle config --delete local.kadmin
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Source: [How to specify local Ruby gems in your Gemfile](https://rossta.net/blog/how-to-specify-local-ruby-gems-in-your-gemfile.html)
|
|
39
|
+
|
|
40
|
+
### kadmin internals...
|
|
18
41
|
Clone, bundle install, run migrations.
|
|
19
42
|
|
|
20
43
|
Third-party libraries that are manually added should go in vendor/, including assets (e.g. `vendor/assets/stylesheets/modular`).
|
data/lib/kadmin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kadmin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicolas Pepin-Perreault
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2019-03-06 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rails
|
|
@@ -66,14 +66,14 @@ dependencies:
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - "~>"
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '0.
|
|
69
|
+
version: '0.6'
|
|
70
70
|
type: :runtime
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - "~>"
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: '0.
|
|
76
|
+
version: '0.6'
|
|
77
77
|
- !ruby/object:Gem::Dependency
|
|
78
78
|
name: barcoop
|
|
79
79
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
196
196
|
version: '0'
|
|
197
197
|
requirements: []
|
|
198
198
|
rubyforge_project:
|
|
199
|
-
rubygems_version: 2.
|
|
199
|
+
rubygems_version: 2.6.14.3
|
|
200
200
|
signing_key:
|
|
201
201
|
specification_version: 4
|
|
202
202
|
summary: Collection of utility, configuration, etc., for admin areas
|