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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NzViMjhjYTViNzM4ZjA5MjkyZWY4OGFiMzE2Y2Y2NzQ4MDhmZjA0MA==
4
+ MjQyYjlmMjNjZmUwNjZmY2ZiYTdmYTFlYmI0ZDM5ODdmZThjM2I5YQ==
5
5
  data.tar.gz: !binary |-
6
- NjFhMmUwNzI1YTI3NGNmOTkyNjg3ZmQ4YWFiOGMwZDg0ZDY0YjFhNg==
6
+ OTU5YWZhNTdjMmIyNGMzMjRkMWEzYzczZDY1YzlmOTVhNTE2MDM0Nw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDliMTA0MDkzZWM3MDhiYWU1YTIwNzZlZDczNTNiM2NiYzVhYjY3MzhkZWFi
10
- MmUxMWFiMGIwMTJmNjY0Njk3NzVkMmM2ZjhmNjQzMDI4YTkxOTFiOGI3NWFm
11
- MWJjMTUxYmJjNmEzZmZjODc5NzkzMWZkNjM2ZTE4OWM2MmYwNjk=
9
+ ZjRhYjkyNTk1OWUxYTIyOWUyOTM1ZjkyYThiNWQxYzEwMDZiN2NlYjQwYzlj
10
+ OTJkYzYyNDhhZjJjMDQzOTg4ZDUwMTNhOWMwMWM4ODRkYTJlNGIyMjllMDA1
11
+ NDJmODAzNGM5NjMzNTAxYzcyYTUxOWQ4ZTU2YjQyMmIxMzY1ZTg=
12
12
  data.tar.gz: !binary |-
13
- NTNjMzhiYmJhODFhNjhhNjk5ODM4M2Y0MTJhOGU2ODRmMzc0OGU5MmJhNDFj
14
- ZWVkMTQxNWFkNjk3YjA3OTIwZmNmMzM1ZjIwM2VjYzU1ZTc5MjUwMTUxZTQ0
15
- Y2JkM2M1NWVjNTc0ZjMzOTkzMzdhMmM1ZjhjNWU3NjZjZWI0MTE=
13
+ NjI1ZjgxMWJiYjYzMzM1NWFiMzU1ZDcwNjEzZWU0Yjk4OGI3ZmUxNjI3YWYz
14
+ MTMzZGJlYzFiZWU0Y2VjNzRkYzg4OWJmOTkzMDkzZDM5NDhlZDk3NTg4OWNj
15
+ NDc5YTgzY2EzMmQ4MWQyMjA2YmYxMWRhZDA2NzQ3ZTFjNjc5N2U=
data/Gemfile CHANGED
@@ -1,3 +1,3 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  gemspec
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.22.5_ new #{app_name} -m #{app_template_file} --skip-bundle --skip-gemfile --skip-test-unit")
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', git: 'https://github.com/acesuares/will_paginate.git'
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', '~> 5.5'
29
- gem 'mysql2', '~> 0.3.19'
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 'turbo-sprockets-rails3'
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 _3.2.21_ new' created
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
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module InlineForms
3
- VERSION = "5.0.0"
3
+ VERSION = "5.0.4"
4
4
  end
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inline_forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares
8
+ - Lemuel Boyce
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []