Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Ruby on Rails Command Line: Part 2

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 438
    Comment on it

    Hi Friends,

    In my previous blog Rails Command Line Tools. I discussed about some rails command line tools. Today I am going to tell you about rake command in rails. rake is actually a ruby version of unix's make command. It is also used to performs some actions on your rails application. It is dependent on the directory in which you currently are. There are so many pre-build tasks for rails application. You can list the available rake tasks on a directory by hitting this command on your directory.

    rake --tasks:

    => Output will be like this that will also contain the description of each task

    1. $ bin/rake --tasks
    2. rake about # List versions of all Rails frameworks and the environment
    3. rake assets:clean # Remove old compiled assets
    4. rake assets:clobber # Remove compiled assets
    5. rake assets:precompile # Compile all the assets named in config.assets.precompile
    6. rake db:create # Create the database from config/database.yml for the current Rails.env
    7. ...
    8. rake log:clear # Truncates all *.log files in log/ to zero bytes (specify which logs with LOGS=test,development)
    9. rake middleware # Prints out your Rack middleware stack
    10. ...
    11. rake tmp:clear # Clear session, cache, and socket files from tmp/ (narrow w/ tmp:sessions:clear, tmp:cache:clear, tmp:sockets:clear)
    12. rake tmp:create # Creates tmp directories for sessions, cache, sockets, and pids

    Rake commands are used for several purposes. Some of them are:

    1. For database related operations:
    Some of the operations that needs to be performed on db like running migration to simulate the tables as migration suggests

    1. rake db:create
    2. ## To create db for the application
    3.  
    4. rake db:setup
    5. ## It not only creates the db but also runs the migration
    6.  
    7. rake db:migrate
    8. ## It runs the latest migrations and simulates the db
    9.  
    10. rake db:rollback
    11. ## It rollbacks the previous migration and sets the db to the previous state
    12.  


    2. Assets related tasks:
    For compiling the assets (js, css) and cleaning them

    1. rake assets:precompile
    2. rake assets:clean


    3. about tasks

    It gives information about your rails application

    1. $ rake about
    2. About your application's environment
    3. Rails version 4.2.5.2
    4. Ruby version 2.2.1-p85 (x86_64-linux)
    5. RubyGems version 2.4.8
    6. Rack version 1.6.4
    7. JavaScript Runtime Node.js (V8)
    8. Middleware Rack::Sendfile, ActionDispatch::Static, Rack::Lock, #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x00000002fd2558>, Rack::Runtime, Rack::MethodOverride, ActionDispatch::RequestId, Rails::Rack::Logger, ActionDispatch::ShowExceptions, WebConsole::Middleware, ActionDispatch::DebugExceptions, ActionDispatch::RemoteIp, ActionDispatch::Reloader, ActionDispatch::Callbacks, ActiveRecord::Migration::CheckPending, ActiveRecord::ConnectionAdapters::ConnectionManagement, ActiveRecord::QueryCache, ActionDispatch::Cookies, ActionDispatch::Session::CookieStore, ActionDispatch::Flash, ActionDispatch::ParamsParser, Remotipart::Middleware, Rack::Head, Rack::ConditionalGet, Rack::ETag, Warden::Manager, OmniAuth::Builder, Rack::Pjax
    9. Application root /home/shwetasingh/rails_apps/article_app_1
    10. Environment development
    11. Database adapter postgresql
    12. Database schema version 20160428123153

    4. Creating custom rake tasks:
    For creating custom rake tasks you can hit this command that will create a file with the namespace provided

    1. rails g task test_task
    2. ## =>
    3. create lib/tasks/test_task.rake

    Now the generated file will look like this:
     

    1. namespace :test_task do
    2. ## Write your tasks here
    3. end

    For more information related to custom rake task you can go through this link
    http://findnerd.com/list/view/Create-a-Custom-Rake-Task/20576/

    Hope you liked this blog. Will talk about more rails things soon.

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: