inline_forms 5.1.3 → 5.1.4

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
  SHA1:
3
- metadata.gz: 79fcbff3afd198bbb32ffbbde4d55ec8755f666d
4
- data.tar.gz: 2f831e739446edb8c25ee052447d7dd7d6358276
3
+ metadata.gz: 450057b694b8f9009111370decd6ff0ec8fb8707
4
+ data.tar.gz: f79b56fd0fd9d9828b49d19262fe4e536c315d1f
5
5
  SHA512:
6
- metadata.gz: 6a0cfbe7a1e4358e762e4e3902d6d54bfb8317325c4f4ff32a099a2ac3c621d00d7e2b4b8114d6df7296c49d44ff9aa0631766a0611b11b7686d09bb4e5f3bb9
7
- data.tar.gz: '0098df08e225b7541cbfd95c4420d9392a93ff220064c26931053e7b52a9b36b6d84761340334dc95e6a5da1fe3f418ad245342154df71bc4976c263ec8e5028'
6
+ metadata.gz: c96d0ec297bdd9e6eda57063fbd676a2a9865e18d9e99d910e0973688e26b2ae135cbc7233e2b9f774ea4954654b4839528ba49dc810d34158a1cccd6cba69eb
7
+ data.tar.gz: 48aed5fe45b9cc064311c724d47e8ff5114be76417ff44c8a4b331d0bb5cf372da232bf8f42b0cf01acbcddece2d5436a4c5279c42a740826683cd1d16ab2962
data/bin/inline_forms CHANGED
@@ -110,7 +110,7 @@ module InlineForms
110
110
 
111
111
  app_template_file = File.join(File.dirname(__FILE__), 'inline_forms_app_template.rb')
112
112
 
113
- if ! run("rails new #{app_name} -m #{app_template_file} --skip-bundle --skip-gemfile --skip-test-unit")
113
+ if ! run("rails new #{app_name} -m #{app_template_file} --skip-bundle --skip-gemfile --skip-test-unit --skip-bootsnap")
114
114
  say "Rails could not create the app '#{app_name}', maybe because it is a reserved word...", :red # TODO ROYTJE MAKE ERROR MESSAGE MORE RELEVANT # Rails could not create the app 'MyApp', maybe because it is a reserved word..
115
115
  exit 1
116
116
  end
@@ -7,7 +7,7 @@ add_source 'https://rubygems.org'
7
7
  gem 'cancancan', '~> 2.0'
8
8
  gem 'carrierwave'
9
9
  gem 'ckeditor', git: 'https://github.com/galetahub/ckeditor'
10
- gem 'bootsnap', require: false
10
+ #gem 'bootsnap', require: false
11
11
  gem 'coffee-rails'
12
12
  gem 'compass-rails'
13
13
  gem 'devise'
@@ -22,7 +22,7 @@ gem 'mini_magick'
22
22
  gem 'mysql2'
23
23
  gem 'paper_trail'
24
24
  gem 'rails-i18n'
25
- gem 'rails', '~> 5.1.4'
25
+ gem 'rails', '~> 5.2.1'
26
26
  gem 'rake'
27
27
  gem 'remotipart', '~> 1.0'
28
28
  gem 'rvm'
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module InlineForms
3
- VERSION = "5.1.3"
3
+ VERSION = "5.1.4"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inline_forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.3
4
+ version: 5.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares