avo 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +27 -8
- data/avo.gemspec +1 -1
- data/lib/avo/version.rb +1 -1
- metadata +4 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f67836725edad209d1bae9be005a76e1e18ae3beba350d001c40e8ef036e1c11
|
4
|
+
data.tar.gz: 8d529d3be11e43640ce68f25c1c4aaf1ffafd364eb33048c5911448f2f605f23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bff44868735e4ff165a223d85c51ee947a274a0354c51c0de2fb42eeb520581bd3b421046c0782c0dba4871ed17436ad681382e0f210071c40e50e4f600d07c8
|
7
|
+
data.tar.gz: 13eb639a2e7f92edacea34e4ccf52e7f8e177769ce6bb78083c448070c070ed2084c58897267920deed5e290558086c8c7690337a4ef89ed6cd4d9e981b42691
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -2,14 +2,38 @@
|
|
2
2
|
![reviewdog](https://github.com/avo-hq/avo/workflows/reviewdog/badge.svg)
|
3
3
|
[![codecov](https://codecov.io/gh/avo-hq/avo/branch/master/graph/badge.svg?token=Q2LMFE4989)](https://codecov.io/gh/avo-hq/avo)
|
4
4
|
|
5
|
-
|
5
|
+
![](https://avohq.io/img/logo-full-stroke-tiny-2x.png)
|
6
|
+
|
6
7
|
Configuration-based, no-maintenance, extendable Ruby on Rails admin
|
7
8
|
|
8
9
|
Avo is a beautiful next-generation framework that empowers you, the developer, to create fantastic admin panels for your Ruby on Rails apps with the flexibility to fit your needs as you grow.
|
9
10
|
|
10
|
-
|
11
|
+
## Get started
|
12
|
+
|
13
|
+
**Website**: [avohq.io](https://avohq.io)\
|
14
|
+
**Documentation**: [docs.avohq.io](https://docs.avohq.io)\
|
15
|
+
**Twitter**: [avo_hq](https://twitter.com/avo_hq)\
|
16
|
+
**Community**: [discord](https://discord.gg/pkTF6y8)
|
17
|
+
|
18
|
+
## Features
|
11
19
|
|
12
|
-
|
20
|
+
- **Code driven configuration** - Configure your Rails dashboard entirely by writing Ruby code.
|
21
|
+
- **Resource Management** - Create a CRUD interface for Active Record from one command. No more copy-pasting view and controller files around.
|
22
|
+
- **Active Storage support** - Amazingly easy, **one-line**, single or multi-file integration with **ActiveStorage**.
|
23
|
+
- **Grid view** - Beautiful card layout to showcase your content.
|
24
|
+
- **Actions** - Run custom actions to one or more of your resources with as little as pressing a button 💪
|
25
|
+
- **Filters** - Write your own custom filters to quickly segment your data.
|
26
|
+
- **Keeps your app clean** - You don't need to change your app to use Avo. Drop it in your existing app or add it to a new one and you're done 🙌
|
27
|
+
- **Custom fields***- No worries if we missed a field you need. Generate a custom field in a jiffy.
|
28
|
+
- **Dashboard widgets and metrics*** - Customize your dashboard with the tools and analytics you need.
|
29
|
+
- **Custom tools*** - You need to add a page with something completely new, you've got it!
|
30
|
+
- **Authorization*** - Leverage Pundit policies to build a robust and scalable authorization system.
|
31
|
+
- **Themable*** - Dress it up into your own colors.
|
32
|
+
- **Localization*** - Have it available in any language you need.
|
33
|
+
|
34
|
+
*Some features are still under development
|
35
|
+
|
36
|
+
# Installation
|
13
37
|
Add this line to your application's `Gemfile`:
|
14
38
|
|
15
39
|
```ruby
|
@@ -20,8 +44,3 @@ And then execute:
|
|
20
44
|
```bash
|
21
45
|
$ bundle install
|
22
46
|
```
|
23
|
-
|
24
|
-
Website: [avohq.io](https://avohq.io)\
|
25
|
-
Docs: [docs.avohq.io](https://docs.avohq.io)\
|
26
|
-
Twitter: [avo_hq](https://twitter.com/avo_hq)\
|
27
|
-
Community: [discord](https://discord.gg/pkTF6y8)
|
data/avo.gemspec
CHANGED
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.files = Dir['{bin,app,config,db,lib,public}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md', 'avo.gemspec', 'Gemfile', 'Gemfile.lock']
|
33
33
|
.reject { |file| file.start_with? 'app/frontend' }
|
34
34
|
|
35
|
-
spec.add_dependency 'rails', '
|
35
|
+
spec.add_dependency 'rails', '>= 6.0'
|
36
36
|
spec.add_dependency 'kaminari'
|
37
37
|
spec.add_dependency 'zeitwerk'
|
38
38
|
spec.add_dependency 'inline_svg'
|
data/lib/avo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Marin
|
@@ -9,28 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-10-
|
12
|
+
date: 2020-10-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "~>"
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: 6.0.2
|
21
18
|
- - ">="
|
22
19
|
- !ruby/object:Gem::Version
|
23
|
-
version: 6.0
|
20
|
+
version: '6.0'
|
24
21
|
type: :runtime
|
25
22
|
prerelease: false
|
26
23
|
version_requirements: !ruby/object:Gem::Requirement
|
27
24
|
requirements:
|
28
|
-
- - "~>"
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: 6.0.2
|
31
25
|
- - ">="
|
32
26
|
- !ruby/object:Gem::Version
|
33
|
-
version: 6.0
|
27
|
+
version: '6.0'
|
34
28
|
- !ruby/object:Gem::Dependency
|
35
29
|
name: kaminari
|
36
30
|
requirement: !ruby/object:Gem::Requirement
|