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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec450bf5a91080c3da1567a91ceaa5c0442c8b7b7101aa1c3f280b4a2315dc63
4
- data.tar.gz: e05f054d5fcdd8befee0c755a5bffdc9e7c0d8c395eeafdefabab3a81cd24364
3
+ metadata.gz: f67836725edad209d1bae9be005a76e1e18ae3beba350d001c40e8ef036e1c11
4
+ data.tar.gz: 8d529d3be11e43640ce68f25c1c4aaf1ffafd364eb33048c5911448f2f605f23
5
5
  SHA512:
6
- metadata.gz: 98f3db1d3cffbe0548d8020e422d58a1c5b9be8c05a89763ad3e34c6dabbf2c9fece2a13961544916ed5f270a166993ff4111a1bfbf91ead0960465a779d45e1
7
- data.tar.gz: 376c19779defe3df1b2f6f63d304186712adbf0c9d82b76c6ee49d5af9c85bc2b18e5c6241685af997da217a5c6187c06248a49d79eb2c874aebb3c0b8e90170
6
+ metadata.gz: bff44868735e4ff165a223d85c51ee947a274a0354c51c0de2fb42eeb520581bd3b421046c0782c0dba4871ed17436ad681382e0f210071c40e50e4f600d07c8
7
+ data.tar.gz: 13eb639a2e7f92edacea34e4ccf52e7f8e177769ce6bb78083c448070c070ed2084c58897267920deed5e290558086c8c7690337a4ef89ed6cd4d9e981b42691
@@ -1,11 +1,11 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (0.2.3)
4
+ avo (0.2.4)
5
5
  countries
6
6
  inline_svg
7
7
  kaminari
8
- rails (~> 6.0.2, >= 6.0.2.1)
8
+ rails (>= 6.0)
9
9
  webpacker
10
10
  zeitwerk
11
11
 
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
- # Avo
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
- [Get started](https://avohq.io/get-started)
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
- ## Installation
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)
@@ -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', '~> 6.0.2', '>= 6.0.2.1'
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'
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = '0.2.3'
2
+ VERSION = '0.2.4'
3
3
  end
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.3
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-16 00:00:00.000000000 Z
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.2.1
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.2.1
27
+ version: '6.0'
34
28
  - !ruby/object:Gem::Dependency
35
29
  name: kaminari
36
30
  requirement: !ruby/object:Gem::Requirement