parcel-rails 0.1.0.pre → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -0
  3. data/.rubocop.yml +7 -0
  4. data/Gemfile +4 -2
  5. data/Gemfile.lock +23 -1
  6. data/README.md +35 -11
  7. data/Rakefile +5 -3
  8. data/bin/console +4 -3
  9. data/examples/railsapp/.gitignore +23 -0
  10. data/examples/railsapp/Gemfile +58 -0
  11. data/examples/railsapp/Gemfile.lock +207 -0
  12. data/examples/railsapp/Procfile +2 -0
  13. data/examples/railsapp/README.md +24 -0
  14. data/examples/railsapp/Rakefile +6 -0
  15. data/examples/railsapp/app/assets/config/manifest.js +3 -0
  16. data/examples/railsapp/app/assets/images/.keep +0 -0
  17. data/examples/railsapp/app/assets/javascripts/application.js +15 -0
  18. data/examples/railsapp/app/assets/javascripts/cable.js +13 -0
  19. data/examples/railsapp/app/assets/javascripts/channels/.keep +0 -0
  20. data/examples/railsapp/app/assets/javascripts/hello.coffee +3 -0
  21. data/examples/railsapp/app/assets/stylesheets/application.css +15 -0
  22. data/examples/railsapp/app/assets/stylesheets/hello.scss +3 -0
  23. data/examples/railsapp/app/channels/application_cable/channel.rb +4 -0
  24. data/examples/railsapp/app/channels/application_cable/connection.rb +4 -0
  25. data/examples/railsapp/app/controllers/application_controller.rb +3 -0
  26. data/examples/railsapp/app/controllers/concerns/.keep +0 -0
  27. data/examples/railsapp/app/controllers/hello_controller.rb +4 -0
  28. data/examples/railsapp/app/helpers/application_helper.rb +2 -0
  29. data/examples/railsapp/app/helpers/hello_helper.rb +2 -0
  30. data/examples/railsapp/app/javascript/application.js +1 -0
  31. data/examples/railsapp/app/javascript/entry.js +3 -0
  32. data/examples/railsapp/app/jobs/application_job.rb +2 -0
  33. data/examples/railsapp/app/mailers/application_mailer.rb +4 -0
  34. data/examples/railsapp/app/models/application_record.rb +3 -0
  35. data/examples/railsapp/app/models/concerns/.keep +0 -0
  36. data/examples/railsapp/app/views/hello/index.html.erb +0 -0
  37. data/examples/railsapp/app/views/layouts/application.html.erb +15 -0
  38. data/examples/railsapp/app/views/layouts/mailer.html.erb +13 -0
  39. data/examples/railsapp/app/views/layouts/mailer.text.erb +1 -0
  40. data/examples/railsapp/bin/bundle +105 -0
  41. data/examples/railsapp/bin/parcel-build +29 -0
  42. data/examples/railsapp/bin/parcel-server +29 -0
  43. data/examples/railsapp/bin/rails +9 -0
  44. data/examples/railsapp/bin/rake +9 -0
  45. data/examples/railsapp/bin/setup +38 -0
  46. data/examples/railsapp/bin/spring +17 -0
  47. data/examples/railsapp/bin/update +29 -0
  48. data/examples/railsapp/bin/yarn +11 -0
  49. data/examples/railsapp/config.ru +5 -0
  50. data/examples/railsapp/config/application.rb +18 -0
  51. data/examples/railsapp/config/boot.rb +3 -0
  52. data/examples/railsapp/config/cable.yml +10 -0
  53. data/examples/railsapp/config/database.yml +25 -0
  54. data/examples/railsapp/config/environment.rb +5 -0
  55. data/examples/railsapp/config/environments/development.rb +54 -0
  56. data/examples/railsapp/config/environments/production.rb +91 -0
  57. data/examples/railsapp/config/environments/test.rb +42 -0
  58. data/examples/railsapp/config/initializers/application_controller_renderer.rb +8 -0
  59. data/examples/railsapp/config/initializers/assets.rb +14 -0
  60. data/examples/railsapp/config/initializers/backtrace_silencers.rb +7 -0
  61. data/examples/railsapp/config/initializers/cookies_serializer.rb +5 -0
  62. data/examples/railsapp/config/initializers/filter_parameter_logging.rb +4 -0
  63. data/examples/railsapp/config/initializers/inflections.rb +16 -0
  64. data/examples/railsapp/config/initializers/mime_types.rb +4 -0
  65. data/examples/railsapp/config/initializers/parcel.rb +4 -0
  66. data/examples/railsapp/config/initializers/wrap_parameters.rb +14 -0
  67. data/examples/railsapp/config/locales/en.yml +33 -0
  68. data/examples/railsapp/config/puma.rb +56 -0
  69. data/examples/railsapp/config/routes.rb +3 -0
  70. data/examples/railsapp/config/secrets.yml +32 -0
  71. data/examples/railsapp/config/spring.rb +6 -0
  72. data/examples/railsapp/db/seeds.rb +7 -0
  73. data/examples/railsapp/lib/assets/.keep +0 -0
  74. data/examples/railsapp/lib/tasks/.keep +0 -0
  75. data/examples/railsapp/package.json +8 -0
  76. data/examples/railsapp/test/application_system_test_case.rb +5 -0
  77. data/examples/railsapp/test/controllers/.keep +0 -0
  78. data/examples/railsapp/test/controllers/hello_controller_test.rb +7 -0
  79. data/examples/railsapp/test/fixtures/.keep +0 -0
  80. data/examples/railsapp/test/fixtures/files/.keep +0 -0
  81. data/examples/railsapp/test/helpers/.keep +0 -0
  82. data/examples/railsapp/test/integration/.keep +0 -0
  83. data/examples/railsapp/test/mailers/.keep +0 -0
  84. data/examples/railsapp/test/models/.keep +0 -0
  85. data/examples/railsapp/test/system/.keep +0 -0
  86. data/examples/railsapp/test/test_helper.rb +9 -0
  87. data/examples/railsapp/tmp/.keep +0 -0
  88. data/examples/railsapp/vendor/.keep +0 -0
  89. data/exe/parcel-build +8 -0
  90. data/exe/parcel-server +8 -0
  91. data/lib/parcel-rails.rb +30 -0
  92. data/lib/parcel/rails/parcel_generator.rb +16 -0
  93. data/lib/parcel/rails/runner.rb +37 -0
  94. data/lib/parcel/rails/tasks.rake +29 -0
  95. data/lib/parcel/rails/version.rb +3 -1
  96. data/parcel-rails.gemspec +22 -18
  97. metadata +122 -6
  98. data/lib/parcel/rails.rb +0 -7
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ root to: 'hello#index'
3
+ end
@@ -0,0 +1,32 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ # Shared secrets are available across all environments.
14
+
15
+ # shared:
16
+ # api_key: a1B2c3D4e5F6
17
+
18
+ # Environmental secrets are only available for that specific environment.
19
+
20
+ development:
21
+ secret_key_base: 0b46b0860972c4311f225b80bbdbe5c227ef9d178951a0b52fd51c04135b0ca64fa52d138e1539a43f11958ea19ddf5b3edaeba6e82e1e351cfe19304c45c40e
22
+
23
+ test:
24
+ secret_key_base: a42472f02cc7218f834faae8d64fb799c636dec8823ba7cf2149875f45a1ee25178785bbf64d40c5856de9df74cd6c80b2dc33b567db3e7f1185827f6be315a9
25
+
26
+ # Do not keep production secrets in the unencrypted secrets file.
27
+ # Instead, either read values from the environment.
28
+ # Or, use `bin/rails secrets:setup` to configure encrypted secrets
29
+ # and move the `production:` environment over there.
30
+
31
+ production:
32
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ %w(
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ).each { |path| Spring.watch(path) }
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
+ # Character.create(name: 'Luke', movie: movies.first)
File without changes
File without changes
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "railsapp",
3
+ "private": true,
4
+ "dependencies": {
5
+ "parcel-bundler": "^1.6.1"
6
+ },
7
+ "scripts": { "parcel": "parcel" }
8
+ }
@@ -0,0 +1,5 @@
1
+ require "test_helper"
2
+
3
+ class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
4
+ driven_by :selenium, using: :chrome, screen_size: [1400, 1400]
5
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class HelloControllerTest < ActionDispatch::IntegrationTest
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,9 @@
1
+ require File.expand_path('../../config/environment', __FILE__)
2
+ require 'rails/test_help'
3
+
4
+ class ActiveSupport::TestCase
5
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
6
+ fixtures :all
7
+
8
+ # Add more helper methods to be used by all tests here...
9
+ end
File without changes
File without changes
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
4
+ ENV["NODE_ENV"] ||= ENV["RAILS_ENV"]
5
+
6
+ require "parcel-rails"
7
+ Parcel::Rails::Runner.from_command_line(ARGV).build
8
+
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
4
+ ENV["NODE_ENV"] ||= ENV["RAILS_ENV"]
5
+
6
+ require "parcel-rails"
7
+ require "parcel-rails/runner"
8
+ Parcel::Rails::Runner.serve(ARGV)
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'parcel/rails/version'
4
+ require 'parcel/rails/runner'
5
+ require 'parcel/rails/parcel_generator'
6
+
7
+ module Parcel
8
+ # Parceljs integration with Rails
9
+ module Rails
10
+ if defined?(::Rails)
11
+ module Rails
12
+ class Application
13
+ attr_accessor :parcel
14
+ end
15
+ end
16
+
17
+ class Railtie < ::Rails::Railtie
18
+ railtie_name :parcel
19
+
20
+ rake_tasks do
21
+ load 'parcel/rails/tasks.rake'
22
+ end
23
+
24
+ config.parcel = ActiveSupport::OrderedOptions.new
25
+ config.parcel.entry_points = %w(app/javascript/application.js)
26
+ config.parcel.destination = 'public/parcels'
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,16 @@
1
+ class ParcelGenerator < Rails::Generators::Base
2
+ desc "Generate parce-rails initializer"
3
+
4
+ def create_initializer_file
5
+ initializer "parcel.rb" do
6
+ %{Rails.application.config.parcel do |parcel|
7
+ parcel.entry_points = %w(app/javascript/application.js)
8
+ parcel.destination = 'public/parcels'
9
+ end}
10
+ end
11
+ end
12
+
13
+ def add_parcel_bundler
14
+ `yarn add parcel-bundler`
15
+ end
16
+ end
@@ -0,0 +1,37 @@
1
+ module Parcel
2
+ module Rails
3
+ class Runner
4
+ def self.from_command_line(args)
5
+ return from_config if args.empty?
6
+ new(args)
7
+ end
8
+
9
+ def self.from_config
10
+ to_args(::Rails.application.config.parcel)
11
+ end
12
+
13
+ def self.to_args(config)
14
+ new([*config.entry_points, '-d', config.destination])
15
+ end
16
+
17
+ def initialize(args)
18
+ @args = args
19
+ end
20
+
21
+ def compile
22
+ parcel_commmand(:build)
23
+ end
24
+
25
+ def serve
26
+ parcel_commmand
27
+ end
28
+
29
+ private
30
+
31
+ def parcel_commmand(cmd = '')
32
+ command = "yarn run parcel -- #{cmd} #{@args.join(' ')}"
33
+ output = exec(command)
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ namespace :parcel do
4
+ desc 'Compiles assets using parcel bundler'
5
+ task :compile do
6
+ Parcel::Rails::Runner.from_config.compile
7
+ end
8
+
9
+ desc 'Compiles assets using parcel bundler'
10
+ task :serve do
11
+ Parcel::Rails::Runner.from_config.serve
12
+ end
13
+
14
+ desc 'Removes compiled assets'
15
+ task :clobber do
16
+ command = "rm -rf #{::Rails.application.config.parcel.destination}"
17
+ logger = Logger.new(STDOUT)
18
+ logger.info(command)
19
+ exec(command)
20
+ end
21
+ end
22
+
23
+ Rake::Task['assets:precompile'].enhance do
24
+ Rake::Task['parcel:compile'].invoke
25
+ end
26
+
27
+ Rake::Task['assets:clobber'].enhance do
28
+ Rake::Task['parcel:clobber'].invoke
29
+ end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Parcel
2
4
  module Rails
3
- VERSION = "0.1.0.pre"
5
+ VERSION = '0.9.0'
4
6
  end
5
7
  end
@@ -1,36 +1,40 @@
1
1
 
2
- lib = File.expand_path("../lib", __FILE__)
2
+ # frozen_string_literal: true
3
+
4
+ lib = File.expand_path('../lib', __FILE__)
3
5
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "parcel/rails/version"
6
+ require 'parcel/rails/version'
5
7
 
6
8
  Gem::Specification.new do |spec|
7
- spec.name = "parcel-rails"
9
+ spec.name = 'parcel-rails'
8
10
  spec.version = Parcel::Rails::VERSION
9
- spec.authors = ["Michał Darda"]
10
- spec.email = ["michaldarda@gmail.com"]
11
+ spec.authors = ['Michał Darda']
12
+ spec.email = ['michaldarda@gmail.com']
11
13
 
12
- spec.summary = %q{Rails integration of parceljs bundler}
13
- spec.description = %q{Rails integration of parceljs bundler}
14
- spec.homepage = "http://github.com/michaldarda/parcel-rails"
15
- spec.license = "MIT"
14
+ spec.summary = 'Rails integration of parceljs bundler'
15
+ spec.description = 'Rails integration of parceljs bundler'
16
+ spec.homepage = 'http://github.com/michaldarda/parcel-rails'
17
+ spec.license = 'MIT'
16
18
 
17
19
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
20
  # to allow pushing to a single host or delete this section to allow pushing to any host.
19
21
  if spec.respond_to?(:metadata)
20
- spec.metadata["allowed_push_host"] = "https://rubygems.org"
22
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
23
  else
22
- raise "RubyGems 2.0 or newer is required to protect against " \
23
- "public gem pushes."
24
+ raise 'RubyGems 2.0 or newer is required to protect against ' \
25
+ 'public gem pushes.'
24
26
  end
25
27
 
26
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
28
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
29
  f.match(%r{^(test|spec|features)/})
28
30
  end
29
- spec.bindir = "exe"
31
+ spec.bindir = 'exe'
30
32
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
- spec.require_paths = ["lib"]
33
+ spec.require_paths = ['lib']
32
34
 
33
- spec.add_development_dependency "bundler", "~> 1.16"
34
- spec.add_development_dependency "rake", "~> 10.0"
35
- spec.add_development_dependency "rspec", "~> 3.0"
35
+ spec.add_development_dependency 'bundler', '~> 1.16'
36
+ spec.add_development_dependency 'pry'
37
+ spec.add_development_dependency 'rake', '~> 10.0'
38
+ spec.add_development_dependency 'rspec', '~> 3.0'
39
+ spec.add_development_dependency 'rubocop'
36
40
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parcel-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michał Darda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-05 00:00:00.000000000 Z
11
+ date: 2018-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
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'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: rake
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -52,15 +66,32 @@ dependencies:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
68
  version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
55
83
  description: Rails integration of parceljs bundler
56
84
  email:
57
85
  - michaldarda@gmail.com
58
- executables: []
86
+ executables:
87
+ - parcel-build
88
+ - parcel-server
59
89
  extensions: []
60
90
  extra_rdoc_files: []
61
91
  files:
62
92
  - ".gitignore"
63
93
  - ".rspec"
94
+ - ".rubocop.yml"
64
95
  - ".travis.yml"
65
96
  - CODE_OF_CONDUCT.md
66
97
  - Gemfile
@@ -70,7 +101,92 @@ files:
70
101
  - Rakefile
71
102
  - bin/console
72
103
  - bin/setup
73
- - lib/parcel/rails.rb
104
+ - examples/railsapp/.gitignore
105
+ - examples/railsapp/Gemfile
106
+ - examples/railsapp/Gemfile.lock
107
+ - examples/railsapp/Procfile
108
+ - examples/railsapp/README.md
109
+ - examples/railsapp/Rakefile
110
+ - examples/railsapp/app/assets/config/manifest.js
111
+ - examples/railsapp/app/assets/images/.keep
112
+ - examples/railsapp/app/assets/javascripts/application.js
113
+ - examples/railsapp/app/assets/javascripts/cable.js
114
+ - examples/railsapp/app/assets/javascripts/channels/.keep
115
+ - examples/railsapp/app/assets/javascripts/hello.coffee
116
+ - examples/railsapp/app/assets/stylesheets/application.css
117
+ - examples/railsapp/app/assets/stylesheets/hello.scss
118
+ - examples/railsapp/app/channels/application_cable/channel.rb
119
+ - examples/railsapp/app/channels/application_cable/connection.rb
120
+ - examples/railsapp/app/controllers/application_controller.rb
121
+ - examples/railsapp/app/controllers/concerns/.keep
122
+ - examples/railsapp/app/controllers/hello_controller.rb
123
+ - examples/railsapp/app/helpers/application_helper.rb
124
+ - examples/railsapp/app/helpers/hello_helper.rb
125
+ - examples/railsapp/app/javascript/application.js
126
+ - examples/railsapp/app/javascript/entry.js
127
+ - examples/railsapp/app/jobs/application_job.rb
128
+ - examples/railsapp/app/mailers/application_mailer.rb
129
+ - examples/railsapp/app/models/application_record.rb
130
+ - examples/railsapp/app/models/concerns/.keep
131
+ - examples/railsapp/app/views/hello/index.html.erb
132
+ - examples/railsapp/app/views/layouts/application.html.erb
133
+ - examples/railsapp/app/views/layouts/mailer.html.erb
134
+ - examples/railsapp/app/views/layouts/mailer.text.erb
135
+ - examples/railsapp/bin/bundle
136
+ - examples/railsapp/bin/parcel-build
137
+ - examples/railsapp/bin/parcel-server
138
+ - examples/railsapp/bin/rails
139
+ - examples/railsapp/bin/rake
140
+ - examples/railsapp/bin/setup
141
+ - examples/railsapp/bin/spring
142
+ - examples/railsapp/bin/update
143
+ - examples/railsapp/bin/yarn
144
+ - examples/railsapp/config.ru
145
+ - examples/railsapp/config/application.rb
146
+ - examples/railsapp/config/boot.rb
147
+ - examples/railsapp/config/cable.yml
148
+ - examples/railsapp/config/database.yml
149
+ - examples/railsapp/config/environment.rb
150
+ - examples/railsapp/config/environments/development.rb
151
+ - examples/railsapp/config/environments/production.rb
152
+ - examples/railsapp/config/environments/test.rb
153
+ - examples/railsapp/config/initializers/application_controller_renderer.rb
154
+ - examples/railsapp/config/initializers/assets.rb
155
+ - examples/railsapp/config/initializers/backtrace_silencers.rb
156
+ - examples/railsapp/config/initializers/cookies_serializer.rb
157
+ - examples/railsapp/config/initializers/filter_parameter_logging.rb
158
+ - examples/railsapp/config/initializers/inflections.rb
159
+ - examples/railsapp/config/initializers/mime_types.rb
160
+ - examples/railsapp/config/initializers/parcel.rb
161
+ - examples/railsapp/config/initializers/wrap_parameters.rb
162
+ - examples/railsapp/config/locales/en.yml
163
+ - examples/railsapp/config/puma.rb
164
+ - examples/railsapp/config/routes.rb
165
+ - examples/railsapp/config/secrets.yml
166
+ - examples/railsapp/config/spring.rb
167
+ - examples/railsapp/db/seeds.rb
168
+ - examples/railsapp/lib/assets/.keep
169
+ - examples/railsapp/lib/tasks/.keep
170
+ - examples/railsapp/package.json
171
+ - examples/railsapp/test/application_system_test_case.rb
172
+ - examples/railsapp/test/controllers/.keep
173
+ - examples/railsapp/test/controllers/hello_controller_test.rb
174
+ - examples/railsapp/test/fixtures/.keep
175
+ - examples/railsapp/test/fixtures/files/.keep
176
+ - examples/railsapp/test/helpers/.keep
177
+ - examples/railsapp/test/integration/.keep
178
+ - examples/railsapp/test/mailers/.keep
179
+ - examples/railsapp/test/models/.keep
180
+ - examples/railsapp/test/system/.keep
181
+ - examples/railsapp/test/test_helper.rb
182
+ - examples/railsapp/tmp/.keep
183
+ - examples/railsapp/vendor/.keep
184
+ - exe/parcel-build
185
+ - exe/parcel-server
186
+ - lib/parcel-rails.rb
187
+ - lib/parcel/rails/parcel_generator.rb
188
+ - lib/parcel/rails/runner.rb
189
+ - lib/parcel/rails/tasks.rake
74
190
  - lib/parcel/rails/version.rb
75
191
  - parcel-rails.gemspec
76
192
  homepage: http://github.com/michaldarda/parcel-rails
@@ -89,9 +205,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
205
  version: '0'
90
206
  required_rubygems_version: !ruby/object:Gem::Requirement
91
207
  requirements:
92
- - - ">"
208
+ - - ">="
93
209
  - !ruby/object:Gem::Version
94
- version: 1.3.1
210
+ version: '0'
95
211
  requirements: []
96
212
  rubyforge_project:
97
213
  rubygems_version: 2.7.3