hyper-store 0.2.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dcf8d340f606a363553e9262590d505a6869364f
4
+ data.tar.gz: 24413f2c87e3301a1145d3d7d36c41bb92ce81aa
5
+ SHA512:
6
+ metadata.gz: 5ad79ce6e50b8d2155bd2d686ce517378fe1a33f2b4e6fc045fa6201b09a71c58c1d69ebcbaabbd3a293703130a108c87991f46cca1cfcd72a804a92e99b5a7f
7
+ data.tar.gz: 37330230ca21eae1c231ed2bb706c52272304bc2cd825b2bbd4934c89a3a72c506c3ea621de520fd4877b261dbd69c3f9f0a85e4f57e781b3f927bbe842e3954
@@ -0,0 +1,46 @@
1
+ *.rbc
2
+ capybara-*.html
3
+ .rspec
4
+ /log
5
+ /tmp
6
+ /db/*.sqlite3
7
+ /db/*.sqlite3-journal
8
+ /public/system
9
+ /coverage/
10
+ /spec/tmp
11
+ **.orig
12
+ rerun.txt
13
+ pickle-email-*.html
14
+
15
+ # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
16
+ config/initializers/secret_token.rb
17
+ config/secrets.yml
18
+
19
+ # dotenv
20
+ # TODO Comment out this rule if environment variables can be committed
21
+ .env
22
+
23
+ ## Environment normalization:
24
+ /.bundle
25
+ /vendor/bundle
26
+
27
+ # these should all be checked in to normalize the environment:
28
+ # Gemfile.lock, .ruby-version, .ruby-gemset
29
+
30
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
31
+ .rvmrc
32
+
33
+ # if using bower-rails ignore default bower_components path bower.json files
34
+ /vendor/assets/bower_components
35
+ *.bowerrc
36
+ bower.json
37
+
38
+ # Ignore pow environment settings
39
+ .powenv
40
+
41
+ # Ignore Byebug command history file.
42
+ .byebug_history
43
+
44
+ # Ignore test_app tmp folders
45
+ /test_app/tmp
46
+ /test_app/log
@@ -0,0 +1,107 @@
1
+ Style/BlockDelimiters:
2
+ EnforcedStyle: line_count_based
3
+ SupportedStyles:
4
+ # The `line_count_based` style enforces braces around single line blocks and
5
+ # do..end around multi-line blocks.
6
+ - line_count_based
7
+ # The `semantic` style enforces braces around functional blocks, where the
8
+ # primary purpose of the block is to return a value and do..end for
9
+ # procedural blocks, where the primary purpose of the block is its
10
+ # side-effects.
11
+ #
12
+ # This looks at the usage of a block's method to determine its type (e.g. is
13
+ # the result of a `map` assigned to a variable or passed to another
14
+ # method) but exceptions are permitted in the `ProceduralMethods`,
15
+ # `FunctionalMethods` and `IgnoredMethods` sections below.
16
+ - semantic
17
+ # The `braces_for_chaining` style enforces braces around single line blocks
18
+ # and do..end around multi-line blocks, except for multi-line blocks whose
19
+ # return value is being chained with another method (in which case braces
20
+ # are enforced).
21
+ - braces_for_chaining
22
+ ProceduralMethods:
23
+ # Methods that are known to be procedural in nature but look functional from
24
+ # their usage, e.g.
25
+ #
26
+ # time = Benchmark.realtime do
27
+ # foo.bar
28
+ # end
29
+ #
30
+ # Here, the return value of the block is discarded but the return value of
31
+ # `Benchmark.realtime` is used.
32
+ - benchmark
33
+ - bm
34
+ - bmbm
35
+ - create
36
+ - each_with_object
37
+ - measure
38
+ - new
39
+ - realtime
40
+ - tap
41
+ - with_object
42
+ FunctionalMethods:
43
+ # Methods that are known to be functional in nature but look procedural from
44
+ # their usage, e.g.
45
+ #
46
+ # let(:foo) { Foo.new }
47
+ #
48
+ # Here, the return value of `Foo.new` is used to define a `foo` helper but
49
+ # doesn't appear to be used from the return value of `let`.
50
+ - let
51
+ - let!
52
+ - subject
53
+ - watch
54
+ IgnoredMethods:
55
+ # Methods that can be either procedural or functional and cannot be
56
+ # categorised from their usage alone, e.g.
57
+ #
58
+ # foo = lambda do |x|
59
+ # puts "Hello, #{x}"
60
+ # end
61
+ #
62
+ # foo = lambda do |x|
63
+ # x * 100
64
+ # end
65
+ #
66
+ # Here, it is impossible to tell from the return value of `lambda` whether
67
+ # the inner block's return value is significant.
68
+ - lambda
69
+ - proc
70
+ - it
71
+
72
+ Style/Documentation:
73
+ Description: 'Document classes and non-namespace modules.'
74
+ Enabled: false
75
+ Exclude:
76
+ - 'spec/**/*'
77
+ - 'test/**/*'
78
+
79
+ # Multi-line method chaining should be done with trailing dots.
80
+ Style/DotPosition:
81
+ EnforcedStyle: leading
82
+ SupportedStyles:
83
+ - leading
84
+ - trailing
85
+
86
+ Style/FrozenStringLiteralComment:
87
+ Description: >-
88
+ Add the frozen_string_literal comment to the top of files
89
+ to help transition from Ruby 2.3.0 to Ruby 3.0.
90
+ Enabled: false
91
+
92
+ Style/MultilineBlockChain:
93
+ Description: 'Avoid multi-line chains of blocks.'
94
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#single-line-blocks'
95
+ Enabled: false
96
+
97
+ Style/MutableConstant:
98
+ Description: 'Do not assign mutable objects to constants.'
99
+ Enabled: false
100
+
101
+ Metrics/AbcSize:
102
+ # The ABC size is a calculated magnitude, so this number can be a Fixnum or
103
+ # a Float.
104
+ Max: 20
105
+
106
+ Metrics/LineLength:
107
+ Max: 100
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at mitch@catprint.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ #gem 'hyper-react', path: '../hyper-react'
4
+
5
+ # Specify your gem's dependencies in hyper-store.gemspec
6
+ gemspec
@@ -0,0 +1,302 @@
1
+ PATH
2
+ remote: ../hyper-react
3
+ specs:
4
+ hyper-react (0.12.0)
5
+ hyper-store
6
+ hyperloop-config
7
+ opal (>= 0.8.0)
8
+ opal-activesupport (>= 0.2.0)
9
+ react-rails
10
+
11
+ PATH
12
+ remote: .
13
+ specs:
14
+ hyper-store (0.2.0)
15
+ hyperloop-config
16
+
17
+ GEM
18
+ remote: https://rubygems.org/
19
+ specs:
20
+ abstract_type (0.0.7)
21
+ actioncable (5.0.1)
22
+ actionpack (= 5.0.1)
23
+ nio4r (~> 1.2)
24
+ websocket-driver (~> 0.6.1)
25
+ actionmailer (5.0.1)
26
+ actionpack (= 5.0.1)
27
+ actionview (= 5.0.1)
28
+ activejob (= 5.0.1)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (5.0.1)
32
+ actionview (= 5.0.1)
33
+ activesupport (= 5.0.1)
34
+ rack (~> 2.0)
35
+ rack-test (~> 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
38
+ actionview (5.0.1)
39
+ activesupport (= 5.0.1)
40
+ builder (~> 3.1)
41
+ erubis (~> 2.7.0)
42
+ rails-dom-testing (~> 2.0)
43
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
44
+ activejob (5.0.1)
45
+ activesupport (= 5.0.1)
46
+ globalid (>= 0.3.6)
47
+ activemodel (5.0.1)
48
+ activesupport (= 5.0.1)
49
+ activerecord (5.0.1)
50
+ activemodel (= 5.0.1)
51
+ activesupport (= 5.0.1)
52
+ arel (~> 7.0)
53
+ activesupport (5.0.1)
54
+ concurrent-ruby (~> 1.0, >= 1.0.2)
55
+ i18n (~> 0.7)
56
+ minitest (~> 5.1)
57
+ tzinfo (~> 1.1)
58
+ adamantium (0.2.0)
59
+ ice_nine (~> 0.11.0)
60
+ memoizable (~> 0.4.0)
61
+ addressable (2.5.0)
62
+ public_suffix (~> 2.0, >= 2.0.2)
63
+ arel (7.1.4)
64
+ ast (2.3.0)
65
+ babel-source (5.8.35)
66
+ babel-transpiler (0.7.0)
67
+ babel-source (>= 4.0, < 6)
68
+ execjs (~> 2.0)
69
+ builder (3.2.3)
70
+ byebug (9.0.6)
71
+ capybara (2.12.0)
72
+ addressable
73
+ mime-types (>= 1.16)
74
+ nokogiri (>= 1.3.3)
75
+ rack (>= 1.0.0)
76
+ rack-test (>= 0.5.4)
77
+ xpath (~> 2.0)
78
+ childprocess (0.6.1)
79
+ ffi (~> 1.0, >= 1.0.11)
80
+ cliver (0.3.2)
81
+ coderay (1.1.1)
82
+ coffee-script-source (1.12.2)
83
+ concord (0.1.5)
84
+ adamantium (~> 0.2.0)
85
+ equalizer (~> 0.0.9)
86
+ concurrent-ruby (1.0.5)
87
+ connection_pool (2.2.1)
88
+ diff-lcs (1.2.5)
89
+ equalizer (0.0.11)
90
+ erubis (2.7.0)
91
+ execjs (2.7.0)
92
+ ffi (1.9.17)
93
+ globalid (0.3.7)
94
+ activesupport (>= 4.1.0)
95
+ hike (1.2.3)
96
+ hyper-spec (0.1.0)
97
+ capybara
98
+ opal
99
+ parser
100
+ poltergeist
101
+ pry
102
+ rspec-rails
103
+ selenium-webdriver (= 2.53.4)
104
+ timecop
105
+ unparser (= 0.2.5)
106
+ hyperloop-config (0.9.1)
107
+ opal
108
+ i18n (0.8.0)
109
+ ice_nine (0.11.2)
110
+ jquery-rails (4.2.2)
111
+ rails-dom-testing (>= 1, < 3)
112
+ railties (>= 4.2.0)
113
+ thor (>= 0.14, < 2.0)
114
+ listen (3.1.5)
115
+ rb-fsevent (~> 0.9, >= 0.9.4)
116
+ rb-inotify (~> 0.9, >= 0.9.7)
117
+ ruby_dep (~> 1.2)
118
+ loofah (2.0.3)
119
+ nokogiri (>= 1.5.9)
120
+ mail (2.6.4)
121
+ mime-types (>= 1.16, < 4)
122
+ memoizable (0.4.2)
123
+ thread_safe (~> 0.3, >= 0.3.1)
124
+ method_source (0.8.2)
125
+ mime-types (3.1)
126
+ mime-types-data (~> 3.2015)
127
+ mime-types-data (3.2016.0521)
128
+ mini_portile2 (2.1.0)
129
+ minitest (5.10.1)
130
+ nio4r (1.2.1)
131
+ nokogiri (1.7.0.1)
132
+ mini_portile2 (~> 2.1.0)
133
+ opal (0.10.3)
134
+ hike (~> 1.2)
135
+ sourcemap (~> 0.1.0)
136
+ sprockets (~> 3.1)
137
+ tilt (>= 1.4)
138
+ opal-activesupport (0.3.0)
139
+ opal (>= 0.5.0, < 1.0.0)
140
+ opal-browser (0.2.0)
141
+ opal
142
+ paggio
143
+ opal-jquery (0.4.2)
144
+ opal (>= 0.7.0, < 0.11.0)
145
+ opal-rails (0.9.1)
146
+ jquery-rails
147
+ opal (>= 0.8.0, < 0.11)
148
+ opal-activesupport (>= 0.0.5)
149
+ opal-jquery (~> 0.4.0)
150
+ opal-sprockets (~> 0.4.0)
151
+ rails (>= 4.0, < 6.0)
152
+ sprockets-rails (< 3.0)
153
+ opal-sprockets (0.4.0.0.10.0.3.0.0)
154
+ opal (~> 0.10.0)
155
+ sprockets (~> 3.0)
156
+ tilt (>= 1.4)
157
+ paggio (0.2.6)
158
+ parser (2.3.3.1)
159
+ ast (~> 2.2)
160
+ poltergeist (1.13.0)
161
+ capybara (~> 2.1)
162
+ cliver (~> 0.3.1)
163
+ websocket-driver (>= 0.2.0)
164
+ powerpack (0.1.1)
165
+ procto (0.0.3)
166
+ pry (0.10.4)
167
+ coderay (~> 1.1.0)
168
+ method_source (~> 0.8.1)
169
+ slop (~> 3.4)
170
+ pry-byebug (3.4.0)
171
+ byebug (~> 9.0)
172
+ pry (~> 0.10)
173
+ public_suffix (2.0.5)
174
+ rack (2.0.1)
175
+ rack-test (0.6.3)
176
+ rack (>= 1.0)
177
+ rails (5.0.1)
178
+ actioncable (= 5.0.1)
179
+ actionmailer (= 5.0.1)
180
+ actionpack (= 5.0.1)
181
+ actionview (= 5.0.1)
182
+ activejob (= 5.0.1)
183
+ activemodel (= 5.0.1)
184
+ activerecord (= 5.0.1)
185
+ activesupport (= 5.0.1)
186
+ bundler (>= 1.3.0, < 2.0)
187
+ railties (= 5.0.1)
188
+ sprockets-rails (>= 2.0.0)
189
+ rails-dom-testing (2.0.2)
190
+ activesupport (>= 4.2.0, < 6.0)
191
+ nokogiri (~> 1.6)
192
+ rails-html-sanitizer (1.0.3)
193
+ loofah (~> 2.0)
194
+ railties (5.0.1)
195
+ actionpack (= 5.0.1)
196
+ activesupport (= 5.0.1)
197
+ method_source
198
+ rake (>= 0.8.7)
199
+ thor (>= 0.18.1, < 2.0)
200
+ rainbow (2.2.1)
201
+ rake (10.5.0)
202
+ rb-fsevent (0.9.8)
203
+ rb-inotify (0.9.8)
204
+ ffi (>= 0.5.0)
205
+ react-rails (1.9.0)
206
+ babel-transpiler (>= 0.7.0)
207
+ coffee-script-source (~> 1.8)
208
+ connection_pool
209
+ execjs
210
+ railties (>= 3.2)
211
+ tilt
212
+ rspec (3.5.0)
213
+ rspec-core (~> 3.5.0)
214
+ rspec-expectations (~> 3.5.0)
215
+ rspec-mocks (~> 3.5.0)
216
+ rspec-core (3.5.4)
217
+ rspec-support (~> 3.5.0)
218
+ rspec-expectations (3.5.0)
219
+ diff-lcs (>= 1.2.0, < 2.0)
220
+ rspec-support (~> 3.5.0)
221
+ rspec-mocks (3.5.0)
222
+ diff-lcs (>= 1.2.0, < 2.0)
223
+ rspec-support (~> 3.5.0)
224
+ rspec-rails (3.5.2)
225
+ actionpack (>= 3.0)
226
+ activesupport (>= 3.0)
227
+ railties (>= 3.0)
228
+ rspec-core (~> 3.5.0)
229
+ rspec-expectations (~> 3.5.0)
230
+ rspec-mocks (~> 3.5.0)
231
+ rspec-support (~> 3.5.0)
232
+ rspec-steps (2.1.1)
233
+ rspec (>= 3.0, < 3.99)
234
+ rspec-support (3.5.0)
235
+ rubocop (0.47.1)
236
+ parser (>= 2.3.3.1, < 3.0)
237
+ powerpack (~> 0.1)
238
+ rainbow (>= 1.99.1, < 3.0)
239
+ ruby-progressbar (~> 1.7)
240
+ unicode-display_width (~> 1.0, >= 1.0.1)
241
+ ruby-progressbar (1.8.1)
242
+ ruby_dep (1.4.0)
243
+ rubyzip (1.2.1)
244
+ selenium-webdriver (2.53.4)
245
+ childprocess (~> 0.5)
246
+ rubyzip (~> 1.0)
247
+ websocket (~> 1.0)
248
+ slop (3.6.0)
249
+ sourcemap (0.1.1)
250
+ sprockets (3.7.1)
251
+ concurrent-ruby (~> 1.0)
252
+ rack (> 1, < 3)
253
+ sprockets-rails (2.3.3)
254
+ actionpack (>= 3.0)
255
+ activesupport (>= 3.0)
256
+ sprockets (>= 2.8, < 4.0)
257
+ sqlite3 (1.3.13)
258
+ thor (0.19.4)
259
+ thread_safe (0.3.5)
260
+ tilt (2.0.6)
261
+ timecop (0.8.1)
262
+ tzinfo (1.2.2)
263
+ thread_safe (~> 0.1)
264
+ unicode-display_width (1.1.3)
265
+ unparser (0.2.5)
266
+ abstract_type (~> 0.0.7)
267
+ adamantium (~> 0.2.0)
268
+ concord (~> 0.1.5)
269
+ diff-lcs (~> 1.2.5)
270
+ equalizer (~> 0.0.9)
271
+ parser (~> 2.3.0)
272
+ procto (~> 0.0.2)
273
+ websocket (1.2.4)
274
+ websocket-driver (0.6.5)
275
+ websocket-extensions (>= 0.1.0)
276
+ websocket-extensions (0.1.2)
277
+ xpath (2.0.0)
278
+ nokogiri (~> 1.3)
279
+
280
+ PLATFORMS
281
+ ruby
282
+
283
+ DEPENDENCIES
284
+ bundler (~> 1.12)
285
+ hyper-react!
286
+ hyper-spec
287
+ hyper-store!
288
+ listen
289
+ opal
290
+ opal-browser
291
+ opal-rails
292
+ pry-byebug
293
+ rails
294
+ rake (~> 10.0)
295
+ react-rails (< 1.10.0)
296
+ rspec
297
+ rspec-steps
298
+ rubocop
299
+ sqlite3
300
+
301
+ BUNDLED WITH
302
+ 1.14.3