rails-parcel 0.0.1

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,41 @@
1
+ {
2
+ "version": "0.0.2",
3
+ "repository": {
4
+ "type": "git",
5
+ "url": "git+https://github.com/bkbabydp/rails-parcel.git"
6
+ },
7
+ "bugs": {
8
+ "url": "https://github.com/bkbabydp/rails-parcel/issues"
9
+ },
10
+ "homepage": "https://github.com/bkbabydp/rails-parcel#readme",
11
+ "scripts": {
12
+ "release": "standard-version"
13
+ },
14
+ "config": {
15
+ "commitizen": {
16
+ "path": "cz-conventional-changelog"
17
+ }
18
+ },
19
+ "husky": {
20
+ "hooks": {
21
+ "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
22
+ }
23
+ },
24
+ "commitlint": {
25
+ "extends": [
26
+ "@commitlint/config-conventional"
27
+ ]
28
+ },
29
+ "dependencies": {
30
+ "parcel-bundler": "^1.12.4"
31
+ },
32
+ "devDependencies": {
33
+ "@commitlint/cli": "^8.3.5",
34
+ "@commitlint/config-conventional": "^8.3.4",
35
+ "commitizen": "^4.0.3",
36
+ "conventional-changelog-cli": "^2.0.31",
37
+ "cz-conventional-changelog": "^3.1.0",
38
+ "husky": "^4.2.3",
39
+ "standard-version": "^7.1.0"
40
+ }
41
+ }
@@ -0,0 +1,39 @@
1
+ require_relative 'lib/parcel/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = 'rails-parcel'
5
+ spec.version = Parcel::VERSION
6
+ spec.authors = ['David Z.']
7
+ spec.email = ['geek@lzw.name']
8
+
9
+ spec.summary = 'Rails integration of parceljs'
10
+ spec.description = 'Rails integration of parceljs'
11
+ spec.homepage = 'http://github.com/bkbabydp/rails-parcel'
12
+ spec.license = 'MIT'
13
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
14
+
15
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
16
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
17
+ if spec.respond_to?(:metadata)
18
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
19
+ else
20
+ raise 'RubyGems 2.0 or newer is required to protect against ' \
21
+ 'public gem pushes.'
22
+ end
23
+
24
+ spec.metadata['homepage_uri'] = spec.homepage
25
+ spec.metadata['source_code_uri'] = spec.homepage
26
+ spec.metadata['changelog_uri'] = 'https://github.com/bkbabydp/rails-parcel/blob/master/CHANGELOG.md'
27
+
28
+ spec.add_development_dependency 'rails'
29
+ spec.add_development_dependency 'rspec'
30
+
31
+ # Specify which files should be added to the gem when it is released.
32
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
33
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
34
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
35
+ end
36
+ spec.bindir = 'exe'
37
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
38
+ spec.require_paths = ['lib']
39
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-parcel
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Z.
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-02-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Rails integration of parceljs
42
+ email:
43
+ - geek@lzw.name
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rspec"
50
+ - ".travis.yml"
51
+ - CHANGELOG.md
52
+ - CODE_OF_CONDUCT.md
53
+ - Gemfile
54
+ - LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - bin/console
58
+ - bin/setup
59
+ - lib/parcel/configuration.rb
60
+ - lib/parcel/generators/install_generator.rb
61
+ - lib/parcel/railtie.rb
62
+ - lib/parcel/runner.rb
63
+ - lib/parcel/tasks.rake
64
+ - lib/parcel/version.rb
65
+ - lib/rails-parcel.rb
66
+ - package-lock.json
67
+ - package.json
68
+ - rails-parcel.gemspec
69
+ homepage: http://github.com/bkbabydp/rails-parcel
70
+ licenses:
71
+ - MIT
72
+ metadata:
73
+ allowed_push_host: https://rubygems.org
74
+ homepage_uri: http://github.com/bkbabydp/rails-parcel
75
+ source_code_uri: http://github.com/bkbabydp/rails-parcel
76
+ changelog_uri: https://github.com/bkbabydp/rails-parcel/blob/master/CHANGELOG.md
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 2.3.0
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubygems_version: 3.0.3
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Rails integration of parceljs
96
+ test_files: []