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,2 @@
1
+ web: rails s
2
+ assets: rails parcel:serve
@@ -0,0 +1,24 @@
1
+ # README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require_relative 'config/application'
5
+
6
+ Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's
5
+ // vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require rails-ujs
14
+ //= require turbolinks
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ // Action Cable provides the framework to deal with WebSockets in Rails.
2
+ // You can generate new channels where WebSocket features live using the `rails generate channel` command.
3
+ //
4
+ //= require action_cable
5
+ //= require_self
6
+ //= require_tree ./channels
7
+
8
+ (function() {
9
+ this.App || (this.App = {});
10
+
11
+ App.cable = ActionCable.createConsumer();
12
+
13
+ }).call(this);
@@ -0,0 +1,3 @@
1
+ # Place all the behaviors and hooks related to the matching controller here.
2
+ # All this logic will automatically be available in application.js.
3
+ # You can use CoffeeScript in this file: http://coffeescript.org/
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
6
+ * vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,3 @@
1
+ // Place all the styles related to the hello controller here.
2
+ // They will automatically be included in application.css.
3
+ // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Channel < ActionCable::Channel::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Connection < ActionCable::Connection::Base
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery with: :exception
3
+ end
@@ -0,0 +1,4 @@
1
+ class HelloController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module HelloHelper
2
+ end
@@ -0,0 +1 @@
1
+ import './entry'
@@ -0,0 +1,3 @@
1
+ setTimeout(() => {
2
+ alert('something')
3
+ }, 3000)
@@ -0,0 +1,2 @@
1
+ class ApplicationJob < ActiveJob::Base
2
+ end
@@ -0,0 +1,4 @@
1
+ class ApplicationMailer < ActionMailer::Base
2
+ default from: 'from@example.com'
3
+ layout 'mailer'
4
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Railsapp</title>
5
+ <%= csrf_meta_tags %>
6
+
7
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
8
+ <%# <%= javascript_parcel_tag 'application' %1> %>
9
+ <%= javascript_include_tag '/parcels/application' %>
10
+ </head>
11
+
12
+ <body>
13
+ <%= yield %>
14
+ </body>
15
+ </html>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
+ <style>
6
+ /* Email styles need to be inline */
7
+ </style>
8
+ </head>
9
+
10
+ <body>
11
+ <%= yield %>
12
+ </body>
13
+ </html>
@@ -0,0 +1,105 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'bundle' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "rubygems"
12
+
13
+ m = Module.new do
14
+ module_function
15
+
16
+ def invoked_as_script?
17
+ File.expand_path($0) == File.expand_path(__FILE__)
18
+ end
19
+
20
+ def env_var_version
21
+ ENV["BUNDLER_VERSION"]
22
+ end
23
+
24
+ def cli_arg_version
25
+ return unless invoked_as_script? # don't want to hijack other binstubs
26
+ return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
27
+ bundler_version = nil
28
+ update_index = nil
29
+ ARGV.each_with_index do |a, i|
30
+ if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
31
+ bundler_version = a
32
+ end
33
+ next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
34
+ bundler_version = $1 || ">= 0.a"
35
+ update_index = i
36
+ end
37
+ bundler_version
38
+ end
39
+
40
+ def gemfile
41
+ gemfile = ENV["BUNDLE_GEMFILE"]
42
+ return gemfile if gemfile && !gemfile.empty?
43
+
44
+ File.expand_path("../../Gemfile", __FILE__)
45
+ end
46
+
47
+ def lockfile
48
+ lockfile =
49
+ case File.basename(gemfile)
50
+ when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
51
+ else "#{gemfile}.lock"
52
+ end
53
+ File.expand_path(lockfile)
54
+ end
55
+
56
+ def lockfile_version
57
+ return unless File.file?(lockfile)
58
+ lockfile_contents = File.read(lockfile)
59
+ return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
60
+ Regexp.last_match(1)
61
+ end
62
+
63
+ def bundler_version
64
+ @bundler_version ||= begin
65
+ env_var_version || cli_arg_version ||
66
+ lockfile_version || "#{Gem::Requirement.default}.a"
67
+ end
68
+ end
69
+
70
+ def load_bundler!
71
+ ENV["BUNDLE_GEMFILE"] ||= gemfile
72
+
73
+ # must dup string for RG < 1.8 compatibility
74
+ activate_bundler(bundler_version.dup)
75
+ end
76
+
77
+ def activate_bundler(bundler_version)
78
+ if Gem::Version.correct?(bundler_version) && Gem::Version.new(bundler_version).release < Gem::Version.new("2.0")
79
+ bundler_version = "< 2"
80
+ end
81
+ gem_error = activation_error_handling do
82
+ gem "bundler", bundler_version
83
+ end
84
+ return if gem_error.nil?
85
+ require_error = activation_error_handling do
86
+ require "bundler/version"
87
+ end
88
+ return if require_error.nil? && Gem::Requirement.new(bundler_version).satisfied_by?(Gem::Version.new(Bundler::VERSION))
89
+ warn "Activating bundler (#{bundler_version}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_version}'`"
90
+ exit 42
91
+ end
92
+
93
+ def activation_error_handling
94
+ yield
95
+ nil
96
+ rescue StandardError, LoadError => e
97
+ e
98
+ end
99
+ end
100
+
101
+ m.load_bundler!
102
+
103
+ if m.invoked_as_script?
104
+ load Gem.bin_path("bundler", "bundle")
105
+ end
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'parcel-build' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("../bundle", __FILE__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 150) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("parcel-rails", "parcel-build")
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'parcel-server' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("../bundle", __FILE__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 150) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("parcel-rails", "parcel-server")
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
7
+ APP_PATH = File.expand_path('../config/application', __dir__)
8
+ require_relative '../config/boot'
9
+ require 'rails/commands'
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
7
+ require_relative '../config/boot'
8
+ require 'rake'
9
+ Rake.application.run
@@ -0,0 +1,38 @@
1
+ #!/usr/bin/env ruby
2
+ require 'pathname'
3
+ require 'fileutils'
4
+ include FileUtils
5
+
6
+ # path to your application root.
7
+ APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
8
+
9
+ def system!(*args)
10
+ system(*args) || abort("\n== Command #{args} failed ==")
11
+ end
12
+
13
+ chdir APP_ROOT do
14
+ # This script is a starting point to setup your application.
15
+ # Add necessary setup steps to this file.
16
+
17
+ puts '== Installing dependencies =='
18
+ system! 'gem install bundler --conservative'
19
+ system('bundle check') || system!('bundle install')
20
+
21
+ # Install JavaScript dependencies if using Yarn
22
+ # system('bin/yarn')
23
+
24
+
25
+ # puts "\n== Copying sample files =="
26
+ # unless File.exist?('config/database.yml')
27
+ # cp 'config/database.yml.sample', 'config/database.yml'
28
+ # end
29
+
30
+ puts "\n== Preparing database =="
31
+ system! 'bin/rails db:setup'
32
+
33
+ puts "\n== Removing old logs and tempfiles =="
34
+ system! 'bin/rails log:clear tmp:clear'
35
+
36
+ puts "\n== Restarting application server =="
37
+ system! 'bin/rails restart'
38
+ end
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # This file loads spring without using Bundler, in order to be fast.
4
+ # It gets overwritten when you run the `spring binstub` command.
5
+
6
+ unless defined?(Spring)
7
+ require 'rubygems'
8
+ require 'bundler'
9
+
10
+ lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
11
+ spring = lockfile.specs.detect { |spec| spec.name == "spring" }
12
+ if spring
13
+ Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
14
+ gem 'spring', spring.version
15
+ require 'spring/binstub'
16
+ end
17
+ end