yarii-editor 0.4.0 → 0.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34c51bc7203286b8032640275ff95921fc41049cc3ff8ca29ff84d5bff173991
4
- data.tar.gz: 50a57ca81c3a912511d624d16cc9a22615894dde667e06aba40efc218b29f9ae
3
+ metadata.gz: 33970d9c54fdb829891b97df2fea669ada3a6057c3e7558346d6e071986a37e5
4
+ data.tar.gz: ea4ddea8d5e0718e781c7e53422c6cda29038d23d60c3ca65f01ed86c6b0f224
5
5
  SHA512:
6
- metadata.gz: 06ada7816fdf2329e3b527bc88ad72172d8a1a447a46912831559478a612ecfaea44f840eea2ba684e3aaec22872b8d77b3312a7f01392d1230c65d8d7102dbd
7
- data.tar.gz: be4c7f725ed23e589056ad1b32d33d724eda35adf6fbf94e3cbc6cb40d05bfc3d31bda37c4a3a4b9beecb3389bfbfb73c5433211ef833af1bb04087f958d3ad3
6
+ metadata.gz: 2dce05abe9d6418a6f447941e7db45d514a234d2064a50a294dfab7f73548a34bc58b35a9f46e773fda41f948b2c3df728ee9b093f29534ced68aaf308d6a57a
7
+ data.tar.gz: 4d3cb1b36726f61c5abaef04c64248fa3850213e27fdf0d67fccde65e6c559511fe0f62f75d1182c1172897b51067bd6317d6a37f3f41e69d72bd07a6fec12c4
data/bin/rails ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails gems
3
+ # installed from the root of your application.
4
+
5
+ ENGINE_ROOT = File.expand_path('..', __dir__)
6
+ ENGINE_PATH = File.expand_path('../lib/yarii-editor/engine', __dir__)
7
+ APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
8
+
9
+ # Set up gems listed in the Gemfile.
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
11
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
12
+
13
+ require 'rails/all'
14
+ require 'rails/engine/commands'
data/bin/webpack ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
4
+ ENV["NODE_ENV"] ||= "development"
5
+
6
+ require "pathname"
7
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
8
+ Pathname.new(__FILE__).realpath)
9
+
10
+ require "rubygems"
11
+ require "bundler/setup"
12
+
13
+ require "webpacker"
14
+ require "webpacker/webpack_runner"
15
+
16
+ APP_ROOT = File.expand_path("..", __dir__)
17
+ Dir.chdir(APP_ROOT) do
18
+ Webpacker::WebpackRunner.run(ARGV)
19
+ end
@@ -1,3 +1,3 @@
1
1
  module YariiEditor
2
- VERSION = '0.4.0'
2
+ VERSION = '0.4.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yarii-editor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared White
@@ -128,6 +128,8 @@ files:
128
128
  - app/views/yarii_editor/publish/commit.html.erb
129
129
  - app/views/yarii_editor/shared/_navbar.html.erb
130
130
  - app/views/yarii_editor/shared/_publishing_menu.html.erb
131
+ - bin/rails
132
+ - bin/webpack
131
133
  - config/initializers/assets.rb
132
134
  - config/routes.rb
133
135
  - config/webpack/development.js