view_component-contrib 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a6b4beca0bdcc956bb6937571139c55c91f6e7978181b63a955f6120ab480628
4
+ data.tar.gz: 4c4b49be24cde772d325ebd17b9a7a5050cf4b75ff272ca91bdd93637a5d834b
5
+ SHA512:
6
+ metadata.gz: 347e50fc7849d0758aa2fcf410494d1db98a06e557d5931e055bfc7675e15e440413beab64c91163a468f409a03a7f7b222c9ddc83db0a83586c94e97aca343b
7
+ data.tar.gz: 9bd92b191093858c794e47742b680f913832db4dff38c7bbd1c348605d31d897c6f11cebfdf4d3201032aa05965a28a5a6d51c2feebf8b2b43f58336e42bb038
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Change log
2
+
3
+ ## master
4
+
5
+ [@palkan]: https://github.com/palkan
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2021 Vladimir Dementyev
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ [![Gem Version](https://badge.fury.io/rb/view_component-contrib.svg)](https://rubygems.org/gems/view_component-contrib) [![Build](https://github.com/palkan/view_component-contrib/workflows/Build/badge.svg)](https://github.com/palkan/view_component-contrib/actions)
2
+ [![JRuby Build](https://github.com/palkan/view_component-contrib/workflows/JRuby%20Build/badge.svg)](https://github.com/palkan/view_component-contrib/actions)
3
+
4
+ # View Component Contrib
5
+
6
+ TBD
7
+
8
+ ## Installation
9
+
10
+ Adding to a gem:
11
+
12
+ ```ruby
13
+ # my-cool-gem.gemspec
14
+ Gem::Specification.new do |spec|
15
+ # ...
16
+ spec.add_dependency "view_component-contrib"
17
+ # ...
18
+ end
19
+ ```
20
+
21
+ Or adding to your project:
22
+
23
+ ```ruby
24
+ # Gemfile
25
+ gem "view_component-contrib"
26
+ ```
27
+
28
+ ### Supported Ruby versions
29
+
30
+ - Ruby (MRI) >= 2.5.0
31
+ - JRuby >= 9.2.9
32
+
33
+ ## Usage
34
+
35
+ TBD
36
+
37
+ ## Contributing
38
+
39
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/palkan/view_component-contrib](https://github.com/palkan/view_component-contrib).
40
+
41
+ ## License
42
+
43
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "view_component/contrib/version"
4
+ require "view_component/contrib/railtie" if defined?(Rails::Railtie)
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ViewComponent # :nodoc:all
4
+ module Contrib
5
+ class Railtie < ::Rails::Railtie
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ViewComponent # :nodoc:all
4
+ module Contrib
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: view_component-contrib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Vladimir Dementyev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-03-22 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: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: combustion
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '13.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '13.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '3.9'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '3.9'
69
+ description: A collection of extensions and developer tools for ViewComponent
70
+ email:
71
+ - dementiev.vm@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - CHANGELOG.md
77
+ - LICENSE.txt
78
+ - README.md
79
+ - lib/view_component-contrib.rb
80
+ - lib/view_component/contrib/railtie.rb
81
+ - lib/view_component/contrib/version.rb
82
+ homepage: http://github.com/palkan/view_component-contrib
83
+ licenses:
84
+ - MIT
85
+ metadata:
86
+ bug_tracker_uri: http://github.com/palkan/view_component-contrib/issues
87
+ changelog_uri: https://github.com/palkan/view_component-contrib/blob/master/CHANGELOG.md
88
+ documentation_uri: http://github.com/palkan/view_component-contrib
89
+ homepage_uri: http://github.com/palkan/view_component-contrib
90
+ source_code_uri: http://github.com/palkan/view_component-contrib
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '2.5'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubygems_version: 3.0.6
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: A collection of extensions and developer tools for ViewComponent
110
+ test_files: []