ovto 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/CHANGELOG.md +5 -0
  4. data/Gemfile +3 -2
  5. data/Gemfile.lock +21 -21
  6. data/README.md +2 -2
  7. data/book/SUMMARY.md +1 -1
  8. data/book/api/fetch.md +3 -3
  9. data/book/api/pure_component.md +27 -0
  10. data/book/guides/install.md +76 -0
  11. data/book/guides/tutorial.md +3 -3
  12. data/book/ovtologo.png +0 -0
  13. data/docs/api/Ovto.html +18 -18
  14. data/docs/api/Ovto/Actions.html +1 -1
  15. data/docs/api/Ovto/App.html +1 -1
  16. data/docs/api/Ovto/Component.html +18 -10
  17. data/docs/api/Ovto/Component/MoreThanOneNode.html +1 -1
  18. data/docs/api/Ovto/PureComponent.html +368 -0
  19. data/docs/api/Ovto/PureComponent/StateIsNotAvailable.html +124 -0
  20. data/docs/api/Ovto/Runtime.html +1 -1
  21. data/docs/api/Ovto/State.html +1 -1
  22. data/docs/api/Ovto/State/MissingValue.html +1 -1
  23. data/docs/api/Ovto/State/UnknownKey.html +1 -1
  24. data/docs/api/Ovto/WiredActions.html +1 -1
  25. data/docs/api/_index.html +26 -4
  26. data/docs/api/actions.html +8 -8
  27. data/docs/api/app.html +8 -8
  28. data/docs/api/class_list.html +1 -1
  29. data/docs/api/component.html +8 -8
  30. data/docs/api/fetch.html +11 -11
  31. data/docs/api/file.README.html +75 -79
  32. data/docs/api/index.html +75 -79
  33. data/docs/api/method_list.html +43 -19
  34. data/docs/api/pure_component.md +27 -0
  35. data/docs/api/state.html +8 -8
  36. data/docs/api/top-level-namespace.html +1 -1
  37. data/docs/gitbook/gitbook.js +2 -2
  38. data/docs/gitbook/theme.js +1 -1
  39. data/docs/guides/debugging.html +8 -8
  40. data/docs/guides/development.html +8 -8
  41. data/docs/guides/install.html +426 -0
  42. data/docs/guides/tutorial.html +74 -65
  43. data/docs/index.html +10 -16
  44. data/docs/ovtologo.png +0 -0
  45. data/docs/search_index.json +1 -1
  46. data/examples/sinatra/Gemfile.lock +2 -2
  47. data/examples/static/Gemfile.lock +6 -10
  48. data/lib/ovto.rb +1 -0
  49. data/lib/ovto/component.rb +25 -12
  50. data/lib/ovto/fetch.rb +1 -1
  51. data/lib/ovto/pure_component.rb +22 -0
  52. data/lib/ovto/version.rb +1 -1
  53. data/ovto.gemspec +1 -1
  54. metadata +21 -5
@@ -1,3 +1,3 @@
1
1
  module Ovto
2
- VERSION = '0.4.1'
2
+ VERSION = '0.5.0'
3
3
  end
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "opal", '~> 0.11'
21
+ spec.add_dependency "opal", '>= 0.11', '< 2'
22
22
  spec.add_dependency "thor", '~> 0.20'
23
23
  spec.add_dependency "rack", '~> 2.0'
24
24
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ovto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yutaka HARA
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-19 00:00:00.000000000 Z
11
+ date: 2019-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opal
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0.11'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '0.11'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: thor
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -74,16 +80,21 @@ files:
74
80
  - book/api/app.md
75
81
  - book/api/component.md
76
82
  - book/api/fetch.md
83
+ - book/api/pure_component.md
77
84
  - book/api/state.md
78
85
  - book/guides/debugging.md
79
86
  - book/guides/development.md
87
+ - book/guides/install.md
80
88
  - book/guides/tutorial.md
89
+ - book/ovtologo.png
81
90
  - book/screenshot.png
82
91
  - docs/api/Ovto.html
83
92
  - docs/api/Ovto/Actions.html
84
93
  - docs/api/Ovto/App.html
85
94
  - docs/api/Ovto/Component.html
86
95
  - docs/api/Ovto/Component/MoreThanOneNode.html
96
+ - docs/api/Ovto/PureComponent.html
97
+ - docs/api/Ovto/PureComponent/StateIsNotAvailable.html
87
98
  - docs/api/Ovto/Runtime.html
88
99
  - docs/api/Ovto/State.html
89
100
  - docs/api/Ovto/State/MissingValue.html
@@ -106,6 +117,7 @@ files:
106
117
  - docs/api/js/full_list.js
107
118
  - docs/api/js/jquery.js
108
119
  - docs/api/method_list.html
120
+ - docs/api/pure_component.md
109
121
  - docs/api/state.html
110
122
  - docs/api/top-level-namespace.html
111
123
  - docs/gitbook/fonts/fontawesome/FontAwesome.otf
@@ -132,8 +144,10 @@ files:
132
144
  - docs/gitbook/theme.js
133
145
  - docs/guides/debugging.html
134
146
  - docs/guides/development.html
147
+ - docs/guides/install.html
135
148
  - docs/guides/tutorial.html
136
149
  - docs/index.html
150
+ - docs/ovtologo.png
137
151
  - docs/screenshot.png
138
152
  - docs/search_index.json
139
153
  - examples/sinatra/Gemfile
@@ -159,6 +173,7 @@ files:
159
173
  - lib/ovto/app.rb
160
174
  - lib/ovto/component.rb
161
175
  - lib/ovto/fetch.rb
176
+ - lib/ovto/pure_component.rb
162
177
  - lib/ovto/runtime.rb
163
178
  - lib/ovto/state.rb
164
179
  - lib/ovto/version.rb
@@ -187,7 +202,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
202
  - !ruby/object:Gem::Version
188
203
  version: '0'
189
204
  requirements: []
190
- rubygems_version: 3.0.3
205
+ rubyforge_project:
206
+ rubygems_version: 2.7.6.2
191
207
  signing_key:
192
208
  specification_version: 4
193
209
  summary: Simple client-side framework for Opal