inline_forms 5.0.0 → 5.0.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 +8 -8
- data/Gemfile +1 -1
- data/bin/inline_forms +1 -1
- data/bin/inline_forms_installer_core.rb +11 -22
- data/inline_forms.gemspec +1 -2
- data/lib/inline_forms/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MjQyYjlmMjNjZmUwNjZmY2ZiYTdmYTFlYmI0ZDM5ODdmZThjM2I5YQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTU5YWZhNTdjMmIyNGMzMjRkMWEzYzczZDY1YzlmOTVhNTE2MDM0Nw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjRhYjkyNTk1OWUxYTIyOWUyOTM1ZjkyYThiNWQxYzEwMDZiN2NlYjQwYzlj
|
|
10
|
+
OTJkYzYyNDhhZjJjMDQzOTg4ZDUwMTNhOWMwMWM4ODRkYTJlNGIyMjllMDA1
|
|
11
|
+
NDJmODAzNGM5NjMzNTAxYzcyYTUxOWQ4ZTU2YjQyMmIxMzY1ZTg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NjI1ZjgxMWJiYjYzMzM1NWFiMzU1ZDcwNjEzZWU0Yjk4OGI3ZmUxNjI3YWYz
|
|
14
|
+
MTMzZGJlYzFiZWU0Y2VjNzRkYzg4OWJmOTkzMDkzZDM5NDhlZDk3NTg4OWNj
|
|
15
|
+
NDc5YTgzY2EzMmQ4MWQyMjA2YmYxMWRhZDA2NzQ3ZTFjNjc5N2U=
|
data/Gemfile
CHANGED
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
|
|
112
|
+
if ! run("rails 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
|
|
@@ -9,7 +9,7 @@ gem 'rake'
|
|
|
9
9
|
gem 'jquery-rails'
|
|
10
10
|
gem 'jquery-ui-sass-rails'
|
|
11
11
|
gem 'capistrano'
|
|
12
|
-
gem 'will_paginate'
|
|
12
|
+
gem 'will_paginate' #, git: 'https://github.com/acesuares/will_paginate.git'
|
|
13
13
|
gem 'tabs_on_rails', git: 'https://github.com/acesuares/tabs_on_rails.git', :branch => 'update_remote'
|
|
14
14
|
gem 'ckeditor'
|
|
15
15
|
gem 'cancan', git: 'https://github.com/acesuares/cancan.git', :branch => '2.0'
|
|
@@ -25,8 +25,14 @@ gem 'i18n-active_record', git: 'https://github.com/acesuares/i18n-active_record.
|
|
|
25
25
|
gem 'unicorn'
|
|
26
26
|
gem 'rvm'
|
|
27
27
|
gem 'rvm-capistrano', require: false
|
|
28
|
-
gem 'foundation-rails'
|
|
29
|
-
gem 'mysql2'
|
|
28
|
+
gem 'foundation-rails'
|
|
29
|
+
gem 'mysql2'
|
|
30
|
+
gem 'sass-rails'
|
|
31
|
+
gem 'coffee-rails'
|
|
32
|
+
gem 'compass-rails'
|
|
33
|
+
gem 'foundation-icons-sass-rails'
|
|
34
|
+
gem 'therubyracer'
|
|
35
|
+
gem 'uglifier'
|
|
30
36
|
|
|
31
37
|
|
|
32
38
|
gem_group :development do
|
|
@@ -35,27 +41,10 @@ gem_group :development do
|
|
|
35
41
|
gem 'switch_user'
|
|
36
42
|
gem 'sqlite3'
|
|
37
43
|
gem 'rspec-rails'
|
|
38
|
-
gem 'test-unit', '~> 3.0'
|
|
39
44
|
gem 'shoulda'
|
|
40
45
|
gem 'bundler'
|
|
41
|
-
gem 'jeweler', '~> 2.1.2'
|
|
42
|
-
gem 'capybara'
|
|
43
|
-
gem 'factory_girl'
|
|
44
|
-
gem 'factory_girl_rails'
|
|
45
46
|
gem 'rspec'
|
|
46
|
-
gem '
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
gem_group :production do
|
|
50
|
-
gem 'therubyracer'
|
|
51
|
-
gem 'uglifier'
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
gem_group :assets do
|
|
55
|
-
gem 'sass-rails'
|
|
56
|
-
gem 'coffee-rails'
|
|
57
|
-
gem 'compass-rails'
|
|
58
|
-
gem 'foundation-icons-sass-rails'
|
|
47
|
+
gem 'listen'
|
|
59
48
|
end
|
|
60
49
|
|
|
61
50
|
say "- Running bundle..."
|
|
@@ -63,7 +52,7 @@ run "gem install bundler"
|
|
|
63
52
|
run "bundle install"
|
|
64
53
|
|
|
65
54
|
say "- Database setup: creating config/database.yml with development database #{ENV['database']}"
|
|
66
|
-
remove_file "config/database.yml" # the one that 'rails
|
|
55
|
+
remove_file "config/database.yml" # the one that 'rails new' created
|
|
67
56
|
if ENV['using_sqlite'] == 'true'
|
|
68
57
|
create_file "config/database.yml", <<-END_DATABASEYML.strip_heredoc
|
|
69
58
|
development:
|
data/inline_forms.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.name = "inline_forms"
|
|
7
7
|
s.version = InlineForms::VERSION
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
|
-
s.authors = ["Ace Suares"]
|
|
9
|
+
s.authors = ["Ace Suares", "Lemuel Boyce"]
|
|
10
10
|
s.email = ["ace@suares.com"]
|
|
11
11
|
s.homepage = %q{http://github.com/acesuares/inline_forms}
|
|
12
12
|
s.summary = %q{Inline editing of forms.}
|
|
@@ -30,6 +30,5 @@ Gem::Specification.new do |s|
|
|
|
30
30
|
s.add_development_dependency(%q<shoulda>)
|
|
31
31
|
s.add_development_dependency(%q<bundler>)
|
|
32
32
|
s.add_development_dependency(%q<jeweler>)
|
|
33
|
-
#s.add_development_dependency(%q<rcov>)
|
|
34
33
|
|
|
35
34
|
end
|
data/lib/inline_forms/version.rb
CHANGED