mtoros-mega_menus 0.6.4 → 0.6.5

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rake'
4
4
  begin
5
5
  require 'echoe'
6
6
 
7
- Echoe.new('mega_menus', '0.6.4') do |p|
7
+ Echoe.new('mega_menus', '0.6.5') do |p|
8
8
  p.summary = "Treeview menu Gem for Rails"
9
9
  p.description = "Adds a model, controller to perform the tasks in order to have a treeview menu. To use this gem simply install it and write script/generate menu name_of_the_menu"
10
10
  p.author = ['Marko Toros']
data/mega_menus.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{mega_menus}
3
- s.version = "0.6.4"
3
+ s.version = "0.6.5"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Marko Toros"]
@@ -1,6 +1,6 @@
1
1
  class <%= "#{'Create' + file_name.capitalize + 's'}" %> < ActiveRecord::Migration
2
2
  def self.up
3
- create_table <%= ":#{file_name + 's'}" %> do |t|
3
+ create_table <%= ":#{file_name + 's'}" %>,:force => true do |t|
4
4
  t.string :title
5
5
  t.string :link
6
6
  t.integer :parent_id
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mtoros-mega_menus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marko Toros