Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
weather-model
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
weather-model
Commits
ec609d63
Commit
ec609d63
authored
May 15, 2017
by
ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove genereate and template
parent
59d44e30
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
141 deletions
+0
-141
weather_model_generator.rb
lib/generators/active_record/weather_model_generator.rb
+0
-96
migration.rb
lib/templates/migration.rb
+0
-19
migration_exsiting.rb
lib/templates/migration_exsiting.rb
+0
-26
No files found.
lib/generators/active_record/weather_model_generator.rb
deleted
100644 → 0
View file @
59d44e30
# require 'rails/generators/active_record'
# module ActiveRecord
# module Generators
# class WeatherModelGenerator < ActiveRecord::Generators::Base
# # argument :attributes, type: :array, default: [], banner: "field:type field:type"
# # include Devise::Generators::OrmHelpers
# source_root File.expand_path("../templates", __FILE__)
# def copy_devise_migration
# if (behavior == :invoke && model_exists?) || (behavior == :revoke && migration_exists?(table_name))
# migration_template "migration_existing.rb", "db/migrate/update_weather_model.rb", migration_version: migration_version
# else
# migration_template "migration.rb", "db/migrate/create_weather_model.rb", migration_version: migration_version
# end
# end
# def generate_model
# invoke "active_record:model", [name], migration: false unless model_exists? && behavior == :invoke
# end
# def inject_devise_content
# content = model_contents
# class_path = if namespaced?
# class_name.to_s.split("::")
# else
# [class_name]
# end
# indent_depth = class_path.size - 1
# content = content.split("\n").map { |line| " " * indent_depth + line } .join("\n") << "\n"
# inject_into_class(model_path, class_path.last, content) if model_exists?
# end
# def migration_data
# <<RUBY
# ## Database authenticatable
# t.string :email, null: false, default: ""
# t.string :encrypted_password, null: false, default: ""
# ## Recoverable
# t.string :reset_password_token
# t.datetime :reset_password_sent_at
# ## Rememberable
# t.datetime :remember_created_at
# ## Trackable
# t.integer :sign_in_count, default: 0, null: false
# t.datetime :current_sign_in_at
# t.datetime :last_sign_in_at
# t.#{ip_column} :current_sign_in_ip
# t.#{ip_column} :last_sign_in_ip
# ## Confirmable
# # t.string :confirmation_token
# # t.datetime :confirmed_at
# # t.datetime :confirmation_sent_at
# # t.string :unconfirmed_email # Only if using reconfirmable
# ## Lockable
# # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
# # t.string :unlock_token # Only if unlock strategy is :email or :both
# # t.datetime :locked_at
# RUBY
# end
# def ip_column
# # Padded with spaces so it aligns nicely with the rest of the columns.
# "%-8s" % (inet? ? "inet" : "string")
# end
# def inet?
# postgresql?
# end
# def rails5?
# Rails.version.start_with? '5'
# end
# def postgresql?
# config = ActiveRecord::Base.configurations[Rails.env]
# config && config['adapter'] == 'postgresql'
# end
# def migration_version
# if rails5?
# "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]"
# end
# end
# end
# end
# end
lib/templates/migration.rb
deleted
100644 → 0
View file @
59d44e30
# class WeatherModelCreate < ActiveRecord::Migration[5.0]
# def change
# create_table :<%= table_name %> do |t|
# <%= migration_data -%>
# <% attributes.each do |attribute| -%>
# t.<%= attribute.type %> :<%= attribute.name %>
# <% end -%>
# t.timestamps null: false
# end
# # add_index :<%= table_name %>, :email, unique: true
# # add_index :<%= table_name %>, :reset_password_token, unique: true
# # add_index :<%= table_name %>, :confirmation_token, unique: true
# # add_index :<%= table_name %>, :unlock_token, unique: true
# end
# end
\ No newline at end of file
lib/templates/migration_exsiting.rb
deleted
100644 → 0
View file @
59d44e30
# class AddDeviseTo<%= table_name.camelize %> < ActiveRecord::Migration<%= migration_version %>
# def self.up
# change_table :<%= table_name %> do |t|
# <%= migration_data -%>
# <% attributes.each do |attribute| -%>
# t.<%= attribute.type %> :<%= attribute.name %>
# <% end -%>
# # Uncomment below if timestamps were not included in your original model.
# # t.timestamps null: false
# end
# add_index :<%= table_name %>, :email, unique: true
# add_index :<%= table_name %>, :reset_password_token, unique: true
# # add_index :<%= table_name %>, :confirmation_token, unique: true
# # add_index :<%= table_name %>, :unlock_token, unique: true
# end
# def self.down
# # By default, we don't want to make any assumption about how to roll back a migration when your
# # model already existed. Please edit below which fields you would like to remove in this migration.
# raise ActiveRecord::IrreversibleMigration
# end
# end
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment