repres-react 1.3.1 → 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 +15 -0
- data/lib/repres/react/models_rspec.rb +0 -0
- data/lib/repres/react/types_rspec.rb +0 -0
- data/lib/repres/react/validators_rspec.rb +0 -0
- data/lib/repres/react/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: 563d2970baa243378337b55054f4b54c1afd865d
|
|
4
|
+
data.tar.gz: 4a037d70abd2099d0ea2f6e22605f28023a82caf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88fbcdb100610f61943533542ff12a06a705822531991127745169f87f03582d8ae6ff012c4901a2f14f90e1488b441febffbd9eb8a38b6829829db13add72dc
|
|
7
|
+
data.tar.gz: 67f8114d063fdd13051d4705ccd4dde4463ca623ae0c0b3e77cbcaeaf2752a2b7577f86081ded9edec6e971dcc334a188d2fe4a28a27f940ec14005b5a3af66a
|
data/README.md
CHANGED
|
@@ -64,3 +64,18 @@ The following JavaScript libraries are switchable, and the version can be config
|
|
|
64
64
|
- :react
|
|
65
65
|
- :'react-dom'
|
|
66
66
|
- :redux
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## RSpec examples
|
|
71
|
+
|
|
72
|
+
```ruby
|
|
73
|
+
# spec/models/repres_spec.rb
|
|
74
|
+
require 'repres/react/models_rspec'
|
|
75
|
+
|
|
76
|
+
# spec/types/repres_spec.rb
|
|
77
|
+
require 'repres/react/types_rspec'
|
|
78
|
+
|
|
79
|
+
# spec/validators/repres_spec.rb
|
|
80
|
+
require 'repres/react/validators_rspec'
|
|
81
|
+
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/repres/react/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: repres-react
|
|
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: 2017-
|
|
11
|
+
date: 2017-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: repres-hyper_text
|
|
@@ -49,6 +49,9 @@ files:
|
|
|
49
49
|
- config/routes.rb
|
|
50
50
|
- lib/repres/react.rb
|
|
51
51
|
- lib/repres/react/engine.rb
|
|
52
|
+
- lib/repres/react/models_rspec.rb
|
|
53
|
+
- lib/repres/react/types_rspec.rb
|
|
54
|
+
- lib/repres/react/validators_rspec.rb
|
|
52
55
|
- lib/repres/react/version.rb
|
|
53
56
|
- lib/tasks/react_tasks.rake
|
|
54
57
|
homepage: https://github.com/topbitdu/repres-react
|