inline_forms_installer 7.13.18 → 8.0.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd3c5925a09649543ee457a7150ce972a9369172b2b458c32997fe6e8bcb2c2f
|
|
4
|
+
data.tar.gz: e518a25462d7003a2b40415dbdd60782f87f6fb8b7e26068a4ae223c7ef75131
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2679daccabc402e75e1651946d55f9c04101460d80c881336c618f4d1a4662e38a840c2a397f2da5dbb19f126159a101d40f7bf67e070c3dc8a53e52e36c9ca
|
|
7
|
+
data.tar.gz: ef9c2b32d0d7df9370feece3b35e97bcb842013e5d89a4da83a4cacb950e295d7d513ebd165f9cf25c6d4b2b9af9dbe4f2b5e11efb05acbed5a46e9776eee074
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.executables = ["inline_forms"]
|
|
20
20
|
s.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
s.add_dependency("inline_forms", "~>
|
|
22
|
+
s.add_dependency("inline_forms", "~> 8")
|
|
23
23
|
s.add_dependency("rvm", ">= 1.11", "< 2.0")
|
|
24
24
|
s.add_dependency("thor", ">= 1.0", "< 2.0")
|
|
25
25
|
end
|
|
@@ -60,14 +60,14 @@ module InlineFormsInstaller
|
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
inline_forms_version = InlineFormsInstaller.inline_forms_version
|
|
63
|
-
# The Gemfile pins `gem "inline_forms", "~>
|
|
63
|
+
# The Gemfile pins `gem "inline_forms", "~> 8"`, so Bundler resolves the
|
|
64
64
|
# highest 7.x available on RubyGems at install time. The
|
|
65
65
|
# `inline_forms_version` value above is just whatever happens to be in
|
|
66
66
|
# the Creator's own gemset and may differ from what lands in the app;
|
|
67
67
|
# report the constraint instead of a misleading exact version, and let
|
|
68
68
|
# `print_create_summary` read the actual locked versions from the
|
|
69
69
|
# generated app's Gemfile.lock once `bundle install` is done.
|
|
70
|
-
say "Creating #{app_name} (inline_forms ~>
|
|
70
|
+
say "Creating #{app_name} (inline_forms ~> 8) with development database #{database}...", :green
|
|
71
71
|
|
|
72
72
|
regex = /\A[0-9a-zA-Z][0-9a-zA-Z_-]+[0-9a-zA-Z]\Z/
|
|
73
73
|
if !regex.match(app_name)
|
|
@@ -169,7 +169,7 @@ module InlineFormsInstaller
|
|
|
169
169
|
# Read the Bundler-locked version of `gem_name` from the generated app's
|
|
170
170
|
# Gemfile.lock so the install summary reports what actually shipped to
|
|
171
171
|
# the app, not what happens to be in the Creator's own gemset (the two
|
|
172
|
-
# can differ because the Gemfile pins `~>
|
|
172
|
+
# can differ because the Gemfile pins `~> 8`).
|
|
173
173
|
def locked_gem_version(app_name, gem_name)
|
|
174
174
|
lock_path = File.expand_path(File.join(app_name, "Gemfile.lock"))
|
|
175
175
|
return nil unless File.file?(lock_path)
|
|
@@ -71,7 +71,7 @@ gem 'foundation-rails', '~> 6.9'
|
|
|
71
71
|
if ENV["INLINE_FORMS_GEMFILE_PATH"] && File.directory?(ENV["INLINE_FORMS_GEMFILE_PATH"])
|
|
72
72
|
gem "inline_forms", path: ENV["INLINE_FORMS_GEMFILE_PATH"]
|
|
73
73
|
else
|
|
74
|
-
gem "inline_forms", "~>
|
|
74
|
+
gem "inline_forms", "~> 8"
|
|
75
75
|
end
|
|
76
76
|
gem 'jquery-rails'
|
|
77
77
|
gem 'jquery-timepicker-rails'
|
|
@@ -102,7 +102,7 @@ gem 'importmap-rails'
|
|
|
102
102
|
gem 'turbo-rails'
|
|
103
103
|
gem 'tabs_on_rails', '~> 3.0'
|
|
104
104
|
gem 'unicorn'
|
|
105
|
-
gem 'validation_hints', '~>
|
|
105
|
+
gem 'validation_hints', '~> 8'
|
|
106
106
|
gem 'will_paginate'
|
|
107
107
|
|
|
108
108
|
gem_group :test do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inline_forms_installer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 8.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ace Suares
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: '
|
|
20
|
+
version: '8'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: '
|
|
27
|
+
version: '8'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: rvm
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|