cama_contact_form 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7222a6e0b4ad1c7b09abb6656f16d5d2f07d2924
4
- data.tar.gz: 1ebb3d84852e04006e714873594ba8aa68c0a23b
3
+ metadata.gz: b3c3e023ea0882d48b9fe55772e4dbe4ccc88ed3
4
+ data.tar.gz: 63069d5667687b5693172d4085e0582eb8bfc32c
5
5
  SHA512:
6
- metadata.gz: 6453f4926263322bf5d5394ac2d48ec5a378bbdab93b783105f4a3dbd06afda3df13e674c264d2723e5b71e00717348b66c265260a3674c938871540e9f66186
7
- data.tar.gz: e88d924247c57fb62b1530edd891808c066338f4c2ba860a006dbfa5314328af880e86c0e12b72c2fccca8435659555a3d2be8c240d5efd30ca2b3336587bd4f
6
+ metadata.gz: 06eadfdd82709cfdf6d62a9532218ed1d42ab882b4aabda417fe88b2cfaaf7e522a9f61ec32b960c4508227a59c07868e87110f9313af138ea78521617582b0d
7
+ data.tar.gz: 09645bff684088fefa2f40cf481e0e9e4884291842c68da0c4b5f69340cefcda3284c3680a593497d36c27100e6f4faf9d05cd36c7117920dc101f72928db074
@@ -8,5 +8,8 @@ class CreateDbStructure < ActiveRecord::Migration
8
8
  t.timestamps
9
9
  end
10
10
  end
11
+ CamaleonCms::Site.all.each do |s|
12
+ s.plugins.where(slug: 'contact_form').update_all(slug: 'cama_contact_form')
13
+ end
11
14
  end
12
15
  end
@@ -1,3 +1,3 @@
1
1
  module CamaContactForm
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cama_contact_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Owen Peredo
@@ -46,7 +46,6 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - MIT-LICENSE
49
- - README.rdoc
50
49
  - Rakefile
51
50
  - app/assets/javascripts/plugins/cama_contact_form/admin_editor.js.coffee
52
51
  - app/controllers/plugins/cama_contact_form/admin_forms_controller.rb
@@ -65,7 +64,6 @@ files:
65
64
  - config/locales/es.yml
66
65
  - config/routes.rb
67
66
  - db/migrate/20160517143441_create_db_structure.rb
68
- - db/migrate/20160518193106_rename_plugin_name.rb
69
67
  - lib/cama_contact_form.rb
70
68
  - lib/cama_contact_form/engine.rb
71
69
  - lib/cama_contact_form/version.rb
data/README.rdoc DELETED
@@ -1,3 +0,0 @@
1
- = CamaContactForm
2
-
3
- This project rocks and uses MIT-LICENSE.
@@ -1,7 +0,0 @@
1
- class RenamePluginName < ActiveRecord::Migration
2
- def change
3
- CamaleonCms::Site.all.each do |s|
4
- s.plugins.where(slug: 'contact_form').update_all(slug: 'cama_contact_form')
5
- end
6
- end
7
- end