yarii-cloudinary 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee27d8a27036bdb708e1a7113769e2ce31ff1cdd7264af66ddb93f9aefd22b86
4
- data.tar.gz: a3d3c2406eb27d7bd4ceef17be39b550adf2145a2d05fd311343c79c1ffdf672
3
+ metadata.gz: 6262240e53adcaec9d93fb06abfe78bbea610df3241e0b4e3e337b5e3de5dc9f
4
+ data.tar.gz: 0eebc15bb7613b467ca89e16b57e16dc52ebf7949b64716ea9c482c59bfaea5d
5
5
  SHA512:
6
- metadata.gz: 87de93d203977671798102933a7fc6f5053c75a9501ac68f1065b1742bde45d0e929562fc8edf9fab81646ee58ce118184a6f06761c48ab9dd4fb2ec27b628b4
7
- data.tar.gz: bb980195588ace45c272b969cd59f38336f35ed7763183b2e4d83897095b0ec8ee8647e46e787840eb5a5915f4d4e60e6c5d6aa83f292bac2e49eb38c8917c4c
6
+ metadata.gz: 2b54309f79e60f57abd09fdd0ea5de9861d1832fb497ab95f91cd4b1075be1f61a1527a4d2da0f93c8976b51ff4a81db097ab83501e563c889d4a27da6325f3c
7
+ data.tar.gz: 7f3b1a93a91495cc8ecc54529ced2041cab2d3157c2c5eff574abc3b88a6891468e2db38aa8371ce07be2f22e9245789415efa8658498bc1b465f61faa7f03b6
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 YariiCloudinary
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yarii-cloudinary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared White
@@ -80,6 +80,8 @@ files:
80
80
  - app/views/yarii_cloudinary/media/index.html.erb
81
81
  - app/views/yarii_editor/editor/_cloudinary.html.erb
82
82
  - app/views/yarii_editor/editor/_cloudinary_multiple.html.erb
83
+ - bin/rails
84
+ - bin/webpack
83
85
  - config/routes.rb
84
86
  - config/webpack/development.js
85
87
  - config/webpack/environment.js