inline_forms 7.2.10 → 7.2.11
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 +4 -4
- data/CHANGELOG.md +11 -0
- data/README.rdoc +6 -0
- data/app/assets/stylesheets/inline_forms/inline_forms.scss +2 -2
- data/app/assets/stylesheets/jquery_ui/jquery.ui.all.css.scss +2 -2
- data/app/assets/stylesheets/jquery_ui/jquery.ui.base.css.scss +14 -14
- data/app/assets/stylesheets/jquery_ui/jquery.ui.theme.css.scss +1 -1
- data/bin/inline_forms_installer_core.rb +5 -1
- data/inline_forms.gemspec +22 -11
- data/lib/generators/assets/stylesheets/inline_forms.scss +2 -2
- data/lib/inline_forms/version.rb +1 -1
- metadata +37 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc1f19aa65a4c6d91b8a566e42e1a397257de689d2bf0f47ea8b68ce7a27e597
|
|
4
|
+
data.tar.gz: 15ed1d356f42fca6087414b60a292bb2fffa5fb87d1f55f2bfbec0cf78408ad8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f7badd154eccacf2c727f2ed13624da92352fee6056a12f8bf8d5f43287283d3270208b82200eb7f4c2b68b0356b0bc11583718e0fdc754e96c43520580a494
|
|
7
|
+
data.tar.gz: 444994d5d929591ba1f2e1cd8697edbd078e945e48772ab574b5797e4c0cd64cea1e9db69644dc58803a385750d085d140bee45611727f45b3f12bd8e9d81b33
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [7.2.11] - 2026-05-07
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **Release status notice added to user-facing docs and gem metadata**: `README.rdoc` now includes a top-level notice that versions after `6.2.14` are currently broken and that a follow-up notice will be posted when the gem is good again. `inline_forms.gemspec` now mirrors this status in both `summary` and `description` so the same warning is visible on RubyGems.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **Generated apps now always source `inline_forms` from the exact generator path** (`gem 'inline_forms', path: generator_repo`) so local unreleased builds are used consistently during `inline_forms create`. To support that safely outside git checkouts, `inline_forms.gemspec` now falls back to globbed file lists when `.git` is absent (instead of shelling out to `git ls-files` unconditionally), while keeping the warning cleanup (`required_ruby_version`, bounded runtime deps, deprecated `rubyforge_project` removal, and executables limited to `inline_forms`).
|
|
16
|
+
- **Dart Sass jQuery UI imports are now deterministic**: vendored jQuery UI SCSS import chains now target explicit `*.css.scss` files (`jquery.ui.all.css.scss` -> `jquery.ui.base.css.scss`/`jquery.ui.theme.css.scss`, plus explicit component/theme-base imports), and `inline_forms.scss` imports the vendored bundle directly. This fixes the case where `dartsass:build` exited 0 but wrote an error CSS payload (`Can't find stylesheet to import`) into `app/assets/builds/inline_forms/inline_forms.css`, leaving logged-in pages effectively unstyled.
|
|
17
|
+
|
|
7
18
|
## [7.2.10] - 2026-05-06
|
|
8
19
|
|
|
9
20
|
### Changed
|
data/README.rdoc
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Inline Forms is almost a complete admin application. You can try it out easily.
|
|
4
4
|
|
|
5
|
+
= Release status notice
|
|
6
|
+
|
|
7
|
+
All gem versions after +6.2.14+ are currently broken.
|
|
8
|
+
|
|
9
|
+
We will post a notice when the gem is good again.
|
|
10
|
+
|
|
5
11
|
= Usage
|
|
6
12
|
|
|
7
13
|
gem install inline_forms
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// inline_forms
|
|
2
2
|
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,400italic);
|
|
3
3
|
@import 'inline_forms/foundation_icons';
|
|
4
|
-
@import 'themes/jquery.ui.sunny';
|
|
5
|
-
@import 'jquery.ui.all';
|
|
4
|
+
@import '../jquery_ui/themes/jquery.ui.sunny.css.scss';
|
|
5
|
+
@import '../jquery_ui/jquery.ui.all.css.scss';
|
|
6
6
|
@import 'foundation_and_overrides';
|
|
7
7
|
|
|
8
8
|
// Foundation 6 makes `.row` a flex container (`display: flex`); a nested
|
|
@@ -9,19 +9,19 @@
|
|
|
9
9
|
* http://docs.jquery.com/UI/Theming
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
-
@import 'jquery.ui.core';
|
|
12
|
+
@import 'jquery.ui.core.css.scss';
|
|
13
13
|
|
|
14
|
-
@import 'jquery.ui.accordion';
|
|
15
|
-
@import 'jquery.ui.autocomplete';
|
|
16
|
-
@import 'jquery.ui.button';
|
|
17
|
-
@import 'jquery.ui.datepicker';
|
|
18
|
-
@import 'jquery.ui.dialog';
|
|
19
|
-
@import 'jquery.ui.menu';
|
|
20
|
-
@import 'jquery.ui.progressbar';
|
|
21
|
-
@import 'jquery.ui.resizable';
|
|
22
|
-
@import 'jquery.ui.selectable';
|
|
23
|
-
@import 'jquery.ui.slider';
|
|
24
|
-
@import 'jquery.ui.spinner';
|
|
25
|
-
@import 'jquery.ui.tabs';
|
|
26
|
-
@import 'jquery.ui.tooltip';
|
|
14
|
+
@import 'jquery.ui.accordion.css.scss';
|
|
15
|
+
@import 'jquery.ui.autocomplete.css.scss';
|
|
16
|
+
@import 'jquery.ui.button.css.scss';
|
|
17
|
+
@import 'jquery.ui.datepicker.css.scss';
|
|
18
|
+
@import 'jquery.ui.dialog.css.scss';
|
|
19
|
+
@import 'jquery.ui.menu.css.scss';
|
|
20
|
+
@import 'jquery.ui.progressbar.css.scss';
|
|
21
|
+
@import 'jquery.ui.resizable.css.scss';
|
|
22
|
+
@import 'jquery.ui.selectable.css.scss';
|
|
23
|
+
@import 'jquery.ui.slider.css.scss';
|
|
24
|
+
@import 'jquery.ui.spinner.css.scss';
|
|
25
|
+
@import 'jquery.ui.tabs.css.scss';
|
|
26
|
+
@import 'jquery.ui.tooltip.css.scss';
|
|
27
27
|
|
|
@@ -16,7 +16,11 @@ gem 'autoprefixer-rails'
|
|
|
16
16
|
# Visually tuned against foundation-rails ~> 6.6.2; current pin ~> 6.9 (6.9.0.x).
|
|
17
17
|
gem 'foundation-rails', '~> 6.9'
|
|
18
18
|
gem 'i18n-active_record', :git => 'https://github.com/acesuares/i18n-active_record.git'
|
|
19
|
-
|
|
19
|
+
generator_repo = File.expand_path(GENERATOR_PATH)
|
|
20
|
+
# Always use the generator source path (repo checkout OR installed gem dir).
|
|
21
|
+
# This guarantees the generated app uses the exact inline_forms code that
|
|
22
|
+
# launched `inline_forms create`, including unreleased local builds.
|
|
23
|
+
gem 'inline_forms', path: generator_repo
|
|
20
24
|
gem 'jquery-rails'
|
|
21
25
|
gem 'jquery-timepicker-rails'
|
|
22
26
|
# jQuery UI JavaScript (`//= require jquery.ui.all` in inline_forms.js). SCSS + PNGs
|
data/inline_forms.gemspec
CHANGED
|
@@ -9,22 +9,33 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.authors = ["Ace Suares", "Lemuel Boyce", "Manuel Ortega"]
|
|
10
10
|
s.email = ["ace@suares.com"]
|
|
11
11
|
s.homepage = %q{http://github.com/acesuares/inline_forms}
|
|
12
|
-
s.summary = %q{Inline editing of forms.}
|
|
13
|
-
s.description = %q{Inline Forms aims to ease the setup of forms that provide inline editing. The field list can be specified in the model.}
|
|
12
|
+
s.summary = %q{Inline editing of forms. Versions after 6.2.14 are currently broken.}
|
|
13
|
+
s.description = %q{Inline Forms aims to ease the setup of forms that provide inline editing. The field list can be specified in the model. Versions after 6.2.14 are currently broken, and we will post a notice when the gem is good again.}
|
|
14
14
|
s.licenses = ["MIT"]
|
|
15
|
+
s.required_ruby_version = ">= 3.2.0"
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
if File.directory?(File.join(__dir__, ".git"))
|
|
18
|
+
s.files = `git ls-files`.split("\n")
|
|
19
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
20
|
+
else
|
|
21
|
+
s.files = Dir.chdir(__dir__) do
|
|
22
|
+
Dir.glob("**/*", File::FNM_DOTMATCH).reject do |f|
|
|
23
|
+
f.start_with?(".git/", ".bundle/", "pkg/") ||
|
|
24
|
+
f == ".git" || f == ".bundle"
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
s.test_files = Dir.chdir(__dir__) do
|
|
28
|
+
Dir.glob("{test,spec,features}/**/*")
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
s.executables = ["inline_forms"]
|
|
21
32
|
s.require_paths = ["lib"]
|
|
22
33
|
|
|
23
|
-
s.add_dependency('rvm')
|
|
24
|
-
s.add_dependency('thor')
|
|
25
|
-
s.add_dependency('validation_hints')
|
|
34
|
+
s.add_dependency('rvm', '>= 1.11', '< 2.0')
|
|
35
|
+
s.add_dependency('thor', '>= 1.0', '< 2.0')
|
|
36
|
+
s.add_dependency('validation_hints', '>= 0.2', '< 1.0')
|
|
26
37
|
s.add_dependency('rails', '>= 7.0.0', '< 7.1')
|
|
27
|
-
s.add_dependency('rails-i18n')
|
|
38
|
+
s.add_dependency('rails-i18n', '>= 7.0', '< 8.0')
|
|
28
39
|
|
|
29
40
|
s.add_development_dependency("minitest", "~> 5.0")
|
|
30
41
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// inline_forms
|
|
2
2
|
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,400italic);
|
|
3
3
|
@import 'inline_forms/foundation_icons';
|
|
4
|
-
@import 'themes/jquery.ui.sunny';
|
|
5
|
-
@import 'jquery.ui.all';
|
|
4
|
+
@import '../jquery_ui/themes/jquery.ui.sunny.css.scss';
|
|
5
|
+
@import '../jquery_ui/jquery.ui.all.css.scss';
|
|
6
6
|
@import 'foundation_and_overrides';
|
|
7
7
|
|
|
8
8
|
// Foundation 6 makes `.row` a flex container (`display: flex`); a nested
|
data/lib/inline_forms/version.rb
CHANGED
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: 7.2.
|
|
4
|
+
version: 7.2.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ace Suares
|
|
@@ -17,42 +17,60 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: '
|
|
20
|
+
version: '1.11'
|
|
21
|
+
- - "<"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: '2.0'
|
|
21
24
|
type: :runtime
|
|
22
25
|
prerelease: false
|
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
27
|
requirements:
|
|
25
28
|
- - ">="
|
|
26
29
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: '
|
|
30
|
+
version: '1.11'
|
|
31
|
+
- - "<"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2.0'
|
|
28
34
|
- !ruby/object:Gem::Dependency
|
|
29
35
|
name: thor
|
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
|
31
37
|
requirements:
|
|
32
38
|
- - ">="
|
|
33
39
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: '0'
|
|
40
|
+
version: '1.0'
|
|
41
|
+
- - "<"
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '2.0'
|
|
35
44
|
type: :runtime
|
|
36
45
|
prerelease: false
|
|
37
46
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
47
|
requirements:
|
|
39
48
|
- - ">="
|
|
40
49
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: '0'
|
|
50
|
+
version: '1.0'
|
|
51
|
+
- - "<"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '2.0'
|
|
42
54
|
- !ruby/object:Gem::Dependency
|
|
43
55
|
name: validation_hints
|
|
44
56
|
requirement: !ruby/object:Gem::Requirement
|
|
45
57
|
requirements:
|
|
46
58
|
- - ">="
|
|
47
59
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: '0'
|
|
60
|
+
version: '0.2'
|
|
61
|
+
- - "<"
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '1.0'
|
|
49
64
|
type: :runtime
|
|
50
65
|
prerelease: false
|
|
51
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
67
|
requirements:
|
|
53
68
|
- - ">="
|
|
54
69
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: '0'
|
|
70
|
+
version: '0.2'
|
|
71
|
+
- - "<"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '1.0'
|
|
56
74
|
- !ruby/object:Gem::Dependency
|
|
57
75
|
name: rails
|
|
58
76
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -79,14 +97,20 @@ dependencies:
|
|
|
79
97
|
requirements:
|
|
80
98
|
- - ">="
|
|
81
99
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '0'
|
|
100
|
+
version: '7.0'
|
|
101
|
+
- - "<"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '8.0'
|
|
83
104
|
type: :runtime
|
|
84
105
|
prerelease: false
|
|
85
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
86
107
|
requirements:
|
|
87
108
|
- - ">="
|
|
88
109
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
110
|
+
version: '7.0'
|
|
111
|
+
- - "<"
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: '8.0'
|
|
90
114
|
- !ruby/object:Gem::Dependency
|
|
91
115
|
name: minitest
|
|
92
116
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -102,13 +126,12 @@ dependencies:
|
|
|
102
126
|
- !ruby/object:Gem::Version
|
|
103
127
|
version: '5.0'
|
|
104
128
|
description: Inline Forms aims to ease the setup of forms that provide inline editing.
|
|
105
|
-
The field list can be specified in the model.
|
|
129
|
+
The field list can be specified in the model. Versions after 6.2.14 are currently
|
|
130
|
+
broken, and we will post a notice when the gem is good again.
|
|
106
131
|
email:
|
|
107
132
|
- ace@suares.com
|
|
108
133
|
executables:
|
|
109
134
|
- inline_forms
|
|
110
|
-
- inline_forms_app_template.rb
|
|
111
|
-
- inline_forms_installer_core.rb
|
|
112
135
|
extensions: []
|
|
113
136
|
extra_rdoc_files: []
|
|
114
137
|
files:
|
|
@@ -599,7 +622,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
599
622
|
requirements:
|
|
600
623
|
- - ">="
|
|
601
624
|
- !ruby/object:Gem::Version
|
|
602
|
-
version:
|
|
625
|
+
version: 3.2.0
|
|
603
626
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
604
627
|
requirements:
|
|
605
628
|
- - ">="
|
|
@@ -608,5 +631,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
608
631
|
requirements: []
|
|
609
632
|
rubygems_version: 3.7.2
|
|
610
633
|
specification_version: 4
|
|
611
|
-
summary: Inline editing of forms.
|
|
634
|
+
summary: Inline editing of forms. Versions after 6.2.14 are currently broken.
|
|
612
635
|
test_files: []
|