inline_forms 3.0.29 → 3.0.30
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 +8 -8
- data/bin/inline_forms +1 -1
- data/bin/inline_forms_installer_core.rb +5 -5
- data/inline_forms.gemspec +1 -1
- data/lib/inline_forms/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzFkYTYwODM3M2JkY2MwMjUzMjlhZmFlZWYyM2IxNzE1Yzk4ZTMyNQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTMyMmViODMwZTA5MDYwZDRiMmE5NzFkYjM5Y2FiZjRkM2E0Y2IwMA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZWYxOTdhZmVmNTQwZTIyNDc1YjMyZWJlYjAxOTEyOTUzMGFkMWIzYWI4M2Iw
|
10
|
+
OGViZDNmZWFmZjU5YzI3ZDgzOGZiYTQ2NmZmOGY5YmVlODBkOTA4N2NlOThj
|
11
|
+
NTU2ODcyNmUzYzlkMmYwMjA3ZWFiYWE1NDY1MjVhOWJkMDJhYzE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTk4MmNjMTVhN2E4OWQxZWIyNjg5NmQyOTBhNmFhOWI3ZDM0NmY4YTVlNWI3
|
14
|
+
ZDk2NTY1MjIyMDdiMjNhNzEzOGZkNThiYTQ4M2Y5ZTU0ZjRmZWEwMTc0ZDIw
|
15
|
+
MzBmZjU2MmRhZTI2NDUwOGJkNDc0ODgyMGViYmEyYmUzZWMzODc=
|
data/bin/inline_forms
CHANGED
@@ -109,7 +109,7 @@ module InlineForms
|
|
109
109
|
|
110
110
|
app_template_file = File.join(File.dirname(__FILE__), 'inline_forms_app_template.rb')
|
111
111
|
|
112
|
-
if ! run("rails _3.2.
|
112
|
+
if ! run("rails _3.2.21_ new #{app_name} -m #{app_template_file} --skip-bundle --skip-gemfile --skip-test-unit")
|
113
113
|
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..
|
114
114
|
exit 1
|
115
115
|
end
|
@@ -4,7 +4,7 @@ create_file 'Gemfile', "# created by inline_forms #{ENV['inline_forms_version']}
|
|
4
4
|
|
5
5
|
add_source 'https://rubygems.org'
|
6
6
|
|
7
|
-
gem 'rails', '~> 3.2'
|
7
|
+
gem 'rails', '~> 3.2.21'
|
8
8
|
gem 'rake', '10.0.4'
|
9
9
|
gem 'jquery-rails', '~> 2.3.0'
|
10
10
|
gem 'jquery-ui-sass-rails'
|
@@ -61,7 +61,7 @@ say "- Running bundle..."
|
|
61
61
|
run "bundle install"
|
62
62
|
|
63
63
|
say "- Database setup: creating config/database.yml with development database #{ENV['database']}"
|
64
|
-
remove_file "config/database.yml" # the one that 'rails _3.2.
|
64
|
+
remove_file "config/database.yml" # the one that 'rails _3.2.21_ new' created
|
65
65
|
if ENV['using_sqlite'] == 'true'
|
66
66
|
create_file "config/database.yml", <<-END_DATABASEYML.strip_heredoc
|
67
67
|
development:
|
@@ -526,10 +526,10 @@ insert_into_file "config/environments/production.rb", <<-DEVISE_MAILER_STUFF.str
|
|
526
526
|
DEVISE_MAILER_STUFF
|
527
527
|
|
528
528
|
# assets
|
529
|
-
say "- Setting config.assets.compile to true in environments/production.rb (needed for ckeditor)..."
|
529
|
+
#say "- Setting config.assets.compile to true in environments/production.rb (needed for ckeditor)..."
|
530
530
|
#insert_into_file "#{app_name}/config/environments/production.rb", "config.assets.compile = false\n", :before => "end\n" if dry_run?
|
531
|
-
gsub_file "config/environments/production.rb", /config.assets.compile = false/, "config.assets.compile = true"
|
532
|
-
|
531
|
+
#gsub_file "config/environments/production.rb", /config.assets.compile = false/, "config.assets.compile = true"
|
532
|
+
### we don't do that no more
|
533
533
|
|
534
534
|
|
535
535
|
|
data/inline_forms.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_dependency('rvm')
|
24
24
|
s.add_dependency('thor')
|
25
25
|
s.add_dependency('validation_hints')
|
26
|
-
s.add_dependency('rails', '
|
26
|
+
s.add_dependency('rails', '3.2.21')
|
27
27
|
s.add_dependency('rails-i18n', '~> 3.0.0')
|
28
28
|
|
29
29
|
s.add_development_dependency(%q<rspec-rails>, [">= 0"])
|
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: 3.0.
|
4
|
+
version: 3.0.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ace Suares
|
@@ -56,16 +56,16 @@ dependencies:
|
|
56
56
|
name: rails
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 3.2.21
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 3.2.21
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rails-i18n
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|