repres-bootstrap 1.9 → 1.10
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 +4 -4
- data/README.md +17 -0
- data/app/controllers/repres/bootstrap/application_controller.rb +3 -0
- data/app/helpers/repres/bootstrap/application_helper.rb +3 -0
- data/app/helpers/repres/bootstrap/form_helper.rb +3 -0
- data/app/jobs/repres/bootstrap/application_job.rb +3 -0
- data/app/mailers/repres/bootstrap/application_mailer.rb +3 -0
- data/app/models/repres/bootstrap/application_record.rb +3 -0
- data/lib/repres/bootstrap/models_rspec.rb +0 -0
- data/lib/repres/bootstrap/types_rspec.rb +0 -0
- data/lib/repres/bootstrap/validators_rspec.rb +0 -0
- data/lib/repres/bootstrap/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b084711b940d6a08b69a38280bdd12d5f75ad2c
|
|
4
|
+
data.tar.gz: a0415019df5a3f70ecf3906a76ffdb0cb0157825
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71c03c54cd67a755d2434dec8eb4313b22dc87d42c0fc6d9deecc27dcc0d9e12d7861d7a812c030c2c2e413f52e51b4ecc1fc49cc84f8f7d77c50c69b75b4d7a
|
|
7
|
+
data.tar.gz: 3fd2674ef76b9149043cc72f7a185e06e25de49084a0e09fb09a6714d0d5327ba709d8839f118817304d80dca657d5ef1a51887325d3e156cd99a0f73b79c088
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Repres Bootstrap Bootstrap资源表现引擎
|
|
2
2
|
|
|
3
|
+
[](http://www.rubydoc.info/gems/repres-bootstrap/frames)
|
|
3
4
|
[](http://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
4
6
|
[](https://badge.fury.io/rb/repres-bootstrap)
|
|
5
7
|
[](https://gemnasium.com/github.com/topbitdu/repres-bootstrap)
|
|
6
8
|
|
|
@@ -298,3 +300,18 @@ app/views/shared/.keep
|
|
|
298
300
|
app/views/administration/v4/shared/_script.html.erb
|
|
299
301
|
app/views/administration/v4/shared/_style.html.erb
|
|
300
302
|
```
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
## RSpec examples
|
|
307
|
+
|
|
308
|
+
```ruby
|
|
309
|
+
# spec/models/repres_spec.rb
|
|
310
|
+
require 'repres/bootstrap/models_rspec'
|
|
311
|
+
|
|
312
|
+
# spec/types/repres_spec.rb
|
|
313
|
+
require 'repres/bootstrap/types_rspec'
|
|
314
|
+
|
|
315
|
+
# spec/validators/repres_spec.rb
|
|
316
|
+
require 'repres/bootstrap/validators_rspec'
|
|
317
|
+
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: repres-bootstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.10'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Topbit Du
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -79,6 +79,9 @@ files:
|
|
|
79
79
|
- lib/generators/repres/bootstrap/platform/templates/config/routes.rb.erb
|
|
80
80
|
- lib/repres/bootstrap.rb
|
|
81
81
|
- lib/repres/bootstrap/engine.rb
|
|
82
|
+
- lib/repres/bootstrap/models_rspec.rb
|
|
83
|
+
- lib/repres/bootstrap/types_rspec.rb
|
|
84
|
+
- lib/repres/bootstrap/validators_rspec.rb
|
|
82
85
|
- lib/repres/bootstrap/version.rb
|
|
83
86
|
- lib/tasks/bootstrap_tasks.rake
|
|
84
87
|
homepage: https://github.com/topbitdu/repres-bootstrap
|