repres-hyper_text 1.3 → 1.4
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/hyper_text/application_controller.rb +3 -0
- data/app/helpers/repres/hyper_text/application_helper.rb +5 -0
- data/app/jobs/repres/hyper_text/application_job.rb +3 -0
- data/app/mailers/repres/hyper_text/application_mailer.rb +3 -0
- data/app/models/repres/hyper_text/application_record.rb +3 -0
- data/lib/repres/hyper_text/models_rspec.rb +0 -0
- data/lib/repres/hyper_text/types_rspec.rb +0 -0
- data/lib/repres/hyper_text/validators_rspec.rb +0 -0
- data/lib/repres/hyper_text/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: 5e3cc6094d564caebc8fcd20021772d859529fe2
|
4
|
+
data.tar.gz: 24fa6575a11797a84dc9220efe00b34262dbd2b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b37f7574d7b0b3b0aede7b2bf126e3a21e9af0e4eb6a6d95cd834318dc0aaaad309f5956276d00583c84ef16fe588c741b2b3a9f146edf8a67abba278146e29e
|
7
|
+
data.tar.gz: 4bc2ee95c2416bceaa304b969d4816e00ef5981e7822d979df208901e946c38b3326b5a8818e155530b550f1c674a680f41b8de58e1512ce20036f73fda4782b
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# Repres HyperText 超文本资源表现引擎
|
2
2
|
|
3
|
+
[](http://www.rubydoc.info/gems/repres-hyper_text/frames)
|
3
4
|
[](http://opensource.org/licenses/MIT)
|
5
|
+
|
4
6
|
[](https://badge.fury.io/rb/repres-hyper_text)
|
5
7
|
[](https://gemnasium.com/github.com/topbitdu/repres-hyper_text)
|
6
8
|
|
@@ -164,3 +166,18 @@ The following CSS libraries are switchable, and the version can be configurable:
|
|
164
166
|
- :'font-awesome'
|
165
167
|
- :buttons
|
166
168
|
- :'animate.css'
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
## RSpec examples
|
173
|
+
|
174
|
+
```ruby
|
175
|
+
# spec/models/repres_spec.rb
|
176
|
+
require 'repres/hyper_text/models_rspec'
|
177
|
+
|
178
|
+
# spec/types/repres_spec.rb
|
179
|
+
require 'repres/hyper_text/types_rspec'
|
180
|
+
|
181
|
+
# spec/validators/repres_spec.rb
|
182
|
+
require 'repres/hyper_text/validators_rspec'
|
183
|
+
```
|
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-hyper_text
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.4'
|
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-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -52,6 +52,9 @@ files:
|
|
52
52
|
- config/routes.rb
|
53
53
|
- lib/repres/hyper_text.rb
|
54
54
|
- lib/repres/hyper_text/engine.rb
|
55
|
+
- lib/repres/hyper_text/models_rspec.rb
|
56
|
+
- lib/repres/hyper_text/types_rspec.rb
|
57
|
+
- lib/repres/hyper_text/validators_rspec.rb
|
55
58
|
- lib/repres/hyper_text/version.rb
|
56
59
|
- lib/tasks/hyper_text_tasks.rake
|
57
60
|
homepage: https://github.com/topbitdu/repres-hyper_text
|