rao 0.0.47.pre → 0.0.48.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +40 -20
- data/lib/rao/version.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 954117a0061524f642d5bcfecf371ee3ca685c895c3d1863a6f075f58392c1d2
|
4
|
+
data.tar.gz: d3293848e5a1b14cac09b38649fbab4ef6290fd5522dca8a59096635c9a1bf88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07e983059b8802a123d466d83fd21a28abc8f63074c075a616c28aa6d0987e9fe60e82befc23dd760c469130f7ba5a7ed6381d12a147433ce8381c6d6dbcf466
|
7
|
+
data.tar.gz: 51210c5b2029b8a910dd65a9466874312332c495d68caa8a9a68796ca3fbe85f9638ceeeb3e8e08f23f676399476bd94947abce9c87d5161b77497d602fbd333
|
data/README.md
CHANGED
@@ -1,35 +1,55 @@
|
|
1
1
|
[![Travis CI](https://travis-ci.org/rails-add-ons/rao.svg?branch=master)](https://travis-ci.org/rails-add-ons/rao)
|
2
2
|
|
3
|
-
#
|
4
|
-
Short description and motivation.
|
3
|
+
# Rails AddOns
|
5
4
|
|
6
|
-
|
7
|
-
How to use my plugin.
|
5
|
+
Rails AddOns is a collecation of tools to make development with ruby on rails faster and easier.
|
8
6
|
|
9
|
-
##
|
10
|
-
Add this line to your application's Gemfile:
|
7
|
+
## Modules
|
11
8
|
|
12
|
-
|
13
|
-
gem 'rao'
|
14
|
-
```
|
9
|
+
### Rao::Api::ResourcesController
|
15
10
|
|
16
|
-
|
17
|
-
```bash
|
18
|
-
$ bundle
|
19
|
-
```
|
11
|
+
A base controller for RESTful resources APIs.
|
20
12
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
13
|
+
### Rao::Api::ServiceController
|
14
|
+
|
15
|
+
A base controller for RESTful service APIs.
|
16
|
+
|
17
|
+
### Rao::Component
|
18
|
+
|
19
|
+
Helpers for HTML resource and collection tables.
|
20
|
+
|
21
|
+
### Rao::Query
|
22
|
+
|
23
|
+
A microframework for querying active record via query params.
|
24
|
+
|
25
|
+
### Rao::ResourceController
|
26
|
+
|
27
|
+
A CRUD base controller (and views) for singular resources.
|
28
|
+
|
29
|
+
### Rao::ResourcesController
|
30
|
+
|
31
|
+
A CRUD base controller (and views) for resources.
|
32
|
+
|
33
|
+
### Rao::Service
|
34
|
+
|
35
|
+
A service layer for ruby on rails.
|
36
|
+
|
37
|
+
### Rao::ServiceChain
|
38
|
+
|
39
|
+
Flow control for services.
|
40
|
+
|
41
|
+
### Rao::ShouldaMatchers
|
42
|
+
|
43
|
+
RSpec matchers for CRUD controllers.
|
44
|
+
|
45
|
+
### Rao::ViewHelper
|
46
|
+
|
47
|
+
A view component micro framework.
|
25
48
|
|
26
49
|
## Running all specs
|
27
50
|
```bash
|
28
51
|
$ bundle && ./rspec-all.sh
|
29
52
|
```
|
30
53
|
|
31
|
-
## Contributing
|
32
|
-
Contribution directions go here.
|
33
|
-
|
34
54
|
## License
|
35
55
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/rao/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module Rao
|
2
|
-
VERSION = '0.0.
|
3
|
-
end
|
2
|
+
VERSION = '0.0.48.pre'.freeze unless const_defined?(:VERSION)
|
3
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rao
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.48.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Vasquez Angel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -94,7 +94,7 @@ files:
|
|
94
94
|
- lib/rao/configuration.rb
|
95
95
|
- lib/rao/version.rb
|
96
96
|
- lib/tasks/rao_tasks.rake
|
97
|
-
homepage:
|
97
|
+
homepage: https://github.com/rao
|
98
98
|
licenses:
|
99
99
|
- MIT
|
100
100
|
metadata: {}
|
@@ -106,14 +106,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: 2.
|
109
|
+
version: 2.6.0
|
110
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
111
|
requirements:
|
112
112
|
- - ">"
|
113
113
|
- !ruby/object:Gem::Version
|
114
114
|
version: 1.3.1
|
115
115
|
requirements: []
|
116
|
-
rubygems_version: 3.
|
116
|
+
rubygems_version: 3.2.24
|
117
117
|
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: Rails Add Ons.
|