vbax-argon_syst 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ff14659df843a60e3b813796300f783b41fd5ec2ed8b656f54786d030b6fbc51
4
+ data.tar.gz: 6176be76a641fc4dfef10000de7b1ca1cf6175ff737222730597ac47f7233006
5
+ SHA512:
6
+ metadata.gz: bcaba0028107e1f333a4fea2f57c8055b8ce6a8eb7e3dfa9a6b22aa2a7d01e8d5d6c24fae57abc3df2dcad8fb01577a8790b149de7caa9120079e4ea4daddc26
7
+ data.tar.gz: f65ad045e260bf4ebb5c04665c6c36eaf58ca1541950affac1d7c879003350769d90679555acf8fd933c77878a70cdb6984efa7ff77d55d28597a659fb109de2
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in vbax-argon_syst.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 v baxter
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Vbax::ArgonSyst
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/vbax/argon_syst`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'vbax-argon_syst'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install vbax-argon_syst
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/vbax-argon_syst.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "vbax/argon_syst"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,14 @@
1
+ module Vbax
2
+ module ArgonSyst
3
+ class Engine < ::Rails::Engine
4
+ initializer 'argon_syst.sass' do |app|
5
+ # Set the sass load paths
6
+ app.config.sass.load_paths << File.join(config.root, "lib","vbax", "sass")
7
+
8
+ # Set the add becky_thatcher/lib/sass to assets path
9
+ app.config.assets.paths << File.join(config.root, "lib","vbax", "sass")
10
+ end
11
+
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,5 @@
1
+ module Vbax
2
+ module ArgonSyst
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require "vbax/argon_syst/version"
2
+ require "vbax/argon_syst/engine"
3
+ module Vbax
4
+ module ArgonSyst
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -0,0 +1,544 @@
1
+ .card {
2
+ position: relative;
3
+ display: flex;
4
+ flex-direction: column;
5
+ min-width: 0;
6
+ word-wrap: break-word;
7
+ border: 1px solid rgba(0, 0, 0, 0.05);
8
+ border-radius: .375rem;
9
+ background-color: #fff;
10
+ background-clip: border-box;
11
+ > {
12
+ hr {
13
+ margin-right: 0;
14
+ margin-left: 0;
15
+ }
16
+ .list-group {
17
+ &:first-child .list-group-item:first-child {
18
+ border-top-left-radius: .375rem;
19
+ border-top-right-radius: .375rem;
20
+ }
21
+ &:last-child .list-group-item:last-child {
22
+ border-bottom-right-radius: .375rem;
23
+ border-bottom-left-radius: .375rem;
24
+ }
25
+ }
26
+ }
27
+ }
28
+
29
+ .card-body {
30
+ padding: 1.5rem;
31
+ flex: 1 1 auto;
32
+ }
33
+
34
+ .card-title {
35
+ margin-bottom: 1.25rem;
36
+ }
37
+
38
+ .card-subtitle {
39
+ margin-top: -.625rem;
40
+ margin-bottom: 0;
41
+ }
42
+
43
+ .card-text:last-child {
44
+ margin-bottom: 0;
45
+ }
46
+
47
+ .card-link {
48
+ &:hover {
49
+ text-decoration: none;
50
+ }
51
+ + .card-link {
52
+ margin-left: 1.5rem;
53
+ }
54
+ }
55
+
56
+ .card-header {
57
+ margin-bottom: 0;
58
+ padding: 1.25rem 1.5rem;
59
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
60
+ background-color: #fff;
61
+ &:first-child {
62
+ border-radius: calc(.375rem - 1px) calc(.375rem - 1px) 0 0;
63
+ }
64
+ + .list-group .list-group-item:first-child {
65
+ border-top: 0;
66
+ }
67
+ }
68
+
69
+ .card-footer {
70
+ padding: 1.25rem 1.5rem;
71
+ border-top: 1px solid rgba(0, 0, 0, 0.05);
72
+ background-color: #fff;
73
+ &:last-child {
74
+ border-radius: 0 0 calc(.375rem - 1px) calc(.375rem - 1px);
75
+ }
76
+ }
77
+
78
+ .card-header-tabs {
79
+ margin-right: -.75rem;
80
+ margin-bottom: -1.25rem;
81
+ margin-left: -.75rem;
82
+ border-bottom: 0;
83
+ }
84
+
85
+ .card-header-pills {
86
+ margin-right: -.75rem;
87
+ margin-left: -.75rem;
88
+ }
89
+
90
+ .card-img-overlay {
91
+ position: absolute;
92
+ top: 0;
93
+ right: 0;
94
+ bottom: 0;
95
+ left: 0;
96
+ padding: 1.25rem;
97
+ }
98
+
99
+ .card-img {
100
+ width: 100%;
101
+ border-radius: calc(.375rem - 1px);
102
+ }
103
+
104
+ .card-img-top {
105
+ width: 100%;
106
+ border-top-left-radius: calc(.375rem - 1px);
107
+ border-top-right-radius: calc(.375rem - 1px);
108
+ }
109
+
110
+ .card-img-bottom {
111
+ width: 100%;
112
+ border-bottom-right-radius: calc(.375rem - 1px);
113
+ border-bottom-left-radius: calc(.375rem - 1px);
114
+ }
115
+
116
+ .card-deck {
117
+ display: flex;
118
+ flex-direction: column;
119
+ .card {
120
+ margin-bottom: 15px;
121
+ }
122
+ }
123
+
124
+ @media (min-width: 576px) {
125
+ .card-deck {
126
+ margin-right: -15px;
127
+ margin-left: -15px;
128
+ flex-flow: row wrap;
129
+ .card {
130
+ display: flex;
131
+ flex-direction: column;
132
+ margin-right: 15px;
133
+ margin-bottom: 0;
134
+ margin-left: 15px;
135
+ flex: 1 0;
136
+ }
137
+ }
138
+ }
139
+
140
+ .card-group {
141
+ display: flex;
142
+ flex-direction: column;
143
+ > .card {
144
+ margin-bottom: 15px;
145
+ }
146
+ }
147
+
148
+ @media (min-width: 576px) {
149
+ .card-group {
150
+ flex-flow: row wrap;
151
+ > .card {
152
+ margin-bottom: 0;
153
+ flex: 1 0;
154
+ + .card {
155
+ margin-left: 0;
156
+ border-left: 0;
157
+ }
158
+ &:first-child {
159
+ border-top-right-radius: 0;
160
+ border-bottom-right-radius: 0;
161
+ .card-img-top, .card-header {
162
+ border-top-right-radius: 0;
163
+ }
164
+ .card-img-bottom, .card-footer {
165
+ border-bottom-right-radius: 0;
166
+ }
167
+ }
168
+ &:last-child {
169
+ border-top-left-radius: 0;
170
+ border-bottom-left-radius: 0;
171
+ .card-img-top, .card-header {
172
+ border-top-left-radius: 0;
173
+ }
174
+ .card-img-bottom, .card-footer {
175
+ border-bottom-left-radius: 0;
176
+ }
177
+ }
178
+ &:only-child {
179
+ border-radius: .375rem;
180
+ .card-img-top, .card-header {
181
+ border-top-left-radius: .375rem;
182
+ border-top-right-radius: .375rem;
183
+ }
184
+ .card-img-bottom, .card-footer {
185
+ border-bottom-right-radius: .375rem;
186
+ border-bottom-left-radius: .375rem;
187
+ }
188
+ }
189
+ &:not(:first-child):not(:last-child):not(:only-child) {
190
+ border-radius: 0;
191
+ .card-img-top, .card-img-bottom, .card-header, .card-footer {
192
+ border-radius: 0;
193
+ }
194
+ }
195
+ }
196
+ }
197
+ }
198
+
199
+ .card-columns .card {
200
+ margin-bottom: 1.25rem;
201
+ }
202
+
203
+ @media (min-width: 576px) {
204
+ .card-columns {
205
+ column-count: 3;
206
+ column-gap: 1.25rem;
207
+ orphans: 1;
208
+ widows: 1;
209
+ .card {
210
+ display: inline-block;
211
+ width: 100%;
212
+ }
213
+ }
214
+ }
215
+
216
+ .accordion .card {
217
+ &:not(:first-of-type) {
218
+ &:not(:last-of-type) {
219
+ border-bottom: 0;
220
+ border-radius: 0;
221
+ }
222
+ .card-header:first-child {
223
+ border-radius: 0;
224
+ }
225
+ }
226
+ &:first-of-type {
227
+ border-bottom: 0;
228
+ border-bottom-right-radius: 0;
229
+ border-bottom-left-radius: 0;
230
+ }
231
+ &:last-of-type {
232
+ border-top-left-radius: 0;
233
+ border-top-right-radius: 0;
234
+ }
235
+ }
236
+
237
+ .card {
238
+ margin-bottom: 30px;
239
+ border: 0;
240
+ box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
241
+ }
242
+
243
+ .card-translucent {
244
+ background-color: rgba(18, 91, 152, 0.08);
245
+ }
246
+
247
+ .card-deck .card {
248
+ margin-bottom: 30px;
249
+ }
250
+
251
+ .card.shadow {
252
+ border: 0 !important;
253
+ }
254
+
255
+ @media (min-width: 576px) {
256
+ .card-columns {
257
+ column-count: 1;
258
+ }
259
+ }
260
+
261
+ @media (min-width: 768px) {
262
+ .card-columns {
263
+ column-count: 2;
264
+ }
265
+ }
266
+
267
+ @media (min-width: 1200px) {
268
+ .card-columns {
269
+ column-count: 3;
270
+ column-gap: 1.25rem;
271
+ }
272
+ }
273
+
274
+ .card-lift--hover:hover {
275
+ transition: all .15s ease;
276
+ transform: translateY(-20px);
277
+ }
278
+
279
+ @media screen and (prefers-reduced-motion: reduce) {
280
+ .card-lift--hover:hover {
281
+ transition: none;
282
+ }
283
+ }
284
+
285
+ .card-blockquote {
286
+ position: relative;
287
+ padding: 2rem;
288
+ .svg-bg {
289
+ position: absolute;
290
+ top: -94px;
291
+ left: 0;
292
+ display: block;
293
+ width: 100%;
294
+ height: 95px;
295
+ }
296
+ }
297
+
298
+ .card-serial-number {
299
+ font-size: 1.625rem;
300
+ display: flex;
301
+ justify-content: space-between;
302
+ > div:not(:last-child) {
303
+ display: flex;
304
+ flex: 1 1 auto;
305
+ &:after {
306
+ position: relative;
307
+ left: -2px;
308
+ content: '-';
309
+ text-align: center;
310
+ flex: 1 1 auto;
311
+ }
312
+ }
313
+ }
314
+
315
+ @media (max-width: 575.98px) {
316
+ .card-serial-number {
317
+ font-size: 1.0625rem;
318
+ }
319
+ }
320
+
321
+ .card-pricing {
322
+ .card-header {
323
+ padding-top: 1.25rem;
324
+ padding-bottom: 1.25rem;
325
+ }
326
+ .list-unstyled li {
327
+ padding: .5rem 0;
328
+ color: #8898aa;
329
+ }
330
+ &.popular {
331
+ z-index: 1;
332
+ border: 3px solid #5e72e4 !important;
333
+ }
334
+ }
335
+
336
+ @media (min-width: 768px) {
337
+ .card-pricing.zoom-in {
338
+ z-index: 1;
339
+ transform: scale(1.1);
340
+ }
341
+ }
342
+
343
+ .card-profile-image {
344
+ position: relative;
345
+ img {
346
+ position: absolute;
347
+ left: 50%;
348
+ max-width: 140px;
349
+ transition: all .15s ease;
350
+ transform: translate(-50%, -50%) scale(1);
351
+ border: 3px solid #fff;
352
+ border-radius: .375rem;
353
+ &:hover {
354
+ transform: translate(-50%, -50%) scale(1.03);
355
+ }
356
+ }
357
+ }
358
+
359
+ .card-profile-stats {
360
+ padding: 1rem 0;
361
+ > div {
362
+ margin-right: 1rem;
363
+ padding: .875rem;
364
+ text-align: center;
365
+ &:last-child {
366
+ margin-right: 0;
367
+ }
368
+ .heading {
369
+ font-size: 1.1rem;
370
+ font-weight: bold;
371
+ display: block;
372
+ }
373
+ .description {
374
+ font-size: .875rem;
375
+ color: #adb5bd;
376
+ }
377
+ }
378
+ }
379
+
380
+ .card-profile-actions {
381
+ padding: .875rem;
382
+ }
383
+
384
+ .card-stats {
385
+ .card-body {
386
+ padding: 1rem 1.5rem;
387
+ }
388
+ .card-status-bullet {
389
+ position: absolute;
390
+ top: 0;
391
+ right: 0;
392
+ transform: translate(50%, -50%);
393
+ }
394
+ }
395
+
396
+ .chart {
397
+ position: relative;
398
+ height: 350px;
399
+ }
400
+
401
+ .chart-sm {
402
+ height: 230px;
403
+ }
404
+
405
+ .chart-legend {
406
+ font-size: .875rem;
407
+ display: flex;
408
+ margin-top: 2.5rem;
409
+ text-align: center;
410
+ color: #8898aa;
411
+ justify-content: center;
412
+ }
413
+
414
+ .chart-legend-item {
415
+ display: inline-flex;
416
+ align-items: center;
417
+ + .chart-legend-item {
418
+ margin-left: 1rem;
419
+ }
420
+ }
421
+
422
+ .chart-legend-indicator {
423
+ display: inline-block;
424
+ width: .5rem;
425
+ height: .5rem;
426
+ margin-right: .375rem;
427
+ border-radius: 50%;
428
+ }
429
+
430
+ #chart-tooltip {
431
+ z-index: 0;
432
+ .arrow {
433
+ top: 100%;
434
+ left: 50%;
435
+ transform: translateX(-50%) translateX(-0.5rem);
436
+ }
437
+ }
438
+
439
+ .chart-info-overlay {
440
+ position: absolute;
441
+ z-index: 1;
442
+ top: 0;
443
+ left: 5%;
444
+ max-width: 350px;
445
+ padding: 20px;
446
+ }
447
+
448
+ .close {
449
+ transition: all .15s ease;
450
+ > span:not(.sr-only) {
451
+ font-size: 1.25rem;
452
+ line-height: 17px;
453
+ display: block;
454
+ width: 1.25rem;
455
+ height: 1.25rem;
456
+ transition: all .15s ease;
457
+ color: rgba(0, 0, 0, 0.6);
458
+ border-radius: 50%;
459
+ background-color: transparent;
460
+ }
461
+ &:hover, &:focus {
462
+ color: rgba(0, 0, 0, 0.9);
463
+ outline: none;
464
+ background-color: transparent;
465
+ }
466
+ &:hover span:not(.sr-only), &:focus span:not(.sr-only) {
467
+ background-color: transparent;
468
+ }
469
+ }
470
+
471
+ .close-dark {
472
+ > span:not(.sr-only) {
473
+ color: rgba(255, 255, 255, 0.8);
474
+ }
475
+ &:hover > span:not(.sr-only), &:focus > span:not(.sr-only) {
476
+ color: white;
477
+ }
478
+ }
479
+
480
+ .accordion .card-header {
481
+ position: relative;
482
+ cursor: pointer;
483
+ &:after {
484
+ font: normal normal normal 14px/1 NucleoIcons;
485
+ line-height: 0;
486
+ position: absolute;
487
+ top: 50%;
488
+ right: 1.5rem;
489
+ content: '\ea0f';
490
+ transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
491
+ transform: translateY(-50%);
492
+ }
493
+ &[aria-expanded='false']:after {
494
+ content: '\ea0f';
495
+ }
496
+ &[aria-expanded='true'] {
497
+ &:after {
498
+ transform: rotate(180deg);
499
+ }
500
+ .heading {
501
+ color: #5e72e4;
502
+ }
503
+ }
504
+ }
505
+
506
+ @media screen and (prefers-reduced-motion: reduce) {
507
+ .accordion .card-header:after {
508
+ transition: none;
509
+ }
510
+ }
511
+
512
+ .footer.has-cards {
513
+ position: relative;
514
+ overflow: hidden;
515
+ margin-top: -420px;
516
+ padding-top: 500px;
517
+ pointer-events: none;
518
+ background: transparent;
519
+ &:before {
520
+ position: absolute;
521
+ top: 600px;
522
+ right: 0;
523
+ left: 0;
524
+ height: 2000px;
525
+ content: '';
526
+ transform: skew(0, -8deg);
527
+ background: #f7fafc;
528
+ }
529
+ .container {
530
+ position: relative;
531
+ pointer-events: auto;
532
+ }
533
+ }
534
+
535
+ .nav-wrapper + .card {
536
+ border-top-left-radius: 0;
537
+ border-top-right-radius: 0;
538
+ border-bottom-right-radius: .375rem;
539
+ border-bottom-left-radius: .375rem;
540
+ }
541
+
542
+ .card .table {
543
+ margin-bottom: 0;
544
+ }
@@ -0,0 +1,41 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "vbax/argon_syst/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "vbax-argon_syst"
8
+ spec.version = Vbax::ArgonSyst::VERSION
9
+ spec.authors = ["v baxter"]
10
+ spec.email = ["vincent.viricel@gmail.com"]
11
+
12
+ spec.summary = %q{test on front}
13
+ spec.description = %q{test on front}
14
+ # spec.homepage = "TODO: Put your gem's website or public repo URL here."
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+ #
22
+ # spec.metadata["homepage_uri"] = spec.homepage
23
+ # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
24
+ # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
25
+ # else
26
+ # raise "RubyGems 2.0 or newer is required to protect against " \
27
+ # "public gem pushes."
28
+ # end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 2.0"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vbax-argon_syst
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - v baxter
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-04-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: test on front
42
+ email:
43
+ - vincent.viricel@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - bin/console
54
+ - bin/setup
55
+ - lib/vbax/argon_syst.rb
56
+ - lib/vbax/argon_syst/engine.rb
57
+ - lib/vbax/argon_syst/version.rb
58
+ - lib/vbax/sass/argon_syst.scss
59
+ - vbax-argon_syst.gemspec
60
+ homepage:
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.7.6
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: test on front
84
+ test_files: []