• Ruby 自学记录 3


    When I created a new project with Rails,I must run the bundle.cmd in my Windows OS.

    F:Ruby27-x64in
    uby.exe F:Ruby27-x64inundle.cmd install
    Fetching gem metadata from https://rubygems.org/.............
    Fetching gem metadata from https://rubygems.org/.
    Resolving dependencies............
    Using rake 13.0.1
    Using concurrent-ruby 1.1.6
    Using i18n 1.8.4
    Using minitest 5.14.1
    Using thread_safe 0.3.6
    Using tzinfo 1.2.7
    Using zeitwerk 2.4.0
    Using activesupport 6.0.3.2
    Using builder 3.2.4
    Using erubi 1.9.0
    Using mini_portile2 2.4.0
    Using nokogiri 1.10.10 (x64-mingw32)
    Using rails-dom-testing 2.0.3
    Using crass 1.0.6
    Using loofah 2.6.0
    Using rails-html-sanitizer 1.3.0
    Using actionview 6.0.3.2
    Using rack 2.2.3
    Using rack-test 1.1.0
    Using actionpack 6.0.3.2
    Using nio4r 2.5.2
    Using websocket-extensions 0.1.5
    Using websocket-driver 0.7.3
    Using actioncable 6.0.3.2
    Using globalid 0.4.2
    Using activejob 6.0.3.2
    Using activemodel 6.0.3.2
    Using activerecord 6.0.3.2
    Using mimemagic 0.3.5
    Using marcel 0.3.3
    Using activestorage 6.0.3.2
    Using mini_mime 1.0.2
    Using mail 2.7.1
    Using actionmailbox 6.0.3.2
    Using actionmailer 6.0.3.2
    Using actiontext 6.0.3.2
    Using public_suffix 4.0.5
    Using addressable 2.7.0
    Using bindex 0.8.1
    Using msgpack 1.3.3 (x64-mingw32)
    Using bootsnap 1.4.6
    Using bundler 2.1.4
    Using byebug 11.1.3
    Using regexp_parser 1.7.1
    Using xpath 3.2.0
    Using capybara 3.33.0
    Using childprocess 3.0.0
    Using ffi 1.13.1 (x64-mingw32)
    Using jbuilder 2.10.0
    Using method_source 1.0.0
    Using puma 4.3.5
    Using rack-proxy 0.6.5
    Using thor 1.0.1
    Using railties 6.0.3.2
    Using sprockets 4.0.2
    Using sprockets-rails 3.2.1
    Using rails 6.0.3.2
    Using rubyzip 2.3.0
    Using sassc 2.4.0 (x64-mingw32)
    Using tilt 2.0.10
    Using sassc-rails 2.1.2
    Using sass-rails 6.0.0
    Using selenium-webdriver 3.142.7
    Fetching sqlite3 1.4.2
    Installing sqlite3 1.4.2 with native extensions
    
    

    Check the Ruby version in OS :

    C:UsersAdministrator>ruby --version
    ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x64-mingw32]
    
    C:UsersAdministrator>
    

    When I use the command line to create a new Rails app :

    
    C:UsersAdministrator>rails new myapp
          create
          create  README.md
          create  Rakefile
          create  .ruby-version
          create  config.ru
          create  .gitignore
          create  Gemfile
             run  git init from "."
    Initialized empty Git repository in C:/Users/Administrator/myapp/.git/
          create  package.json
          create  app
          create  app/assets/config/manifest.js
          create  app/assets/stylesheets/application.css
          create  app/channels/application_cable/channel.rb
          create  app/channels/application_cable/connection.rb
          create  app/controllers/application_controller.rb
          create  app/helpers/application_helper.rb
          create  app/javascript/channels/consumer.js
          create  app/javascript/channels/index.js
          create  app/javascript/packs/application.js
          create  app/jobs/application_job.rb
          create  app/mailers/application_mailer.rb
          create  app/models/application_record.rb
          create  app/views/layouts/application.html.erb
          create  app/views/layouts/mailer.html.erb
          create  app/views/layouts/mailer.text.erb
          create  app/assets/images
          create  app/assets/images/.keep
          create  app/controllers/concerns/.keep
          create  app/models/concerns/.keep
          create  bin
          create  bin/rails
          create  bin/rake
          create  bin/setup
          create  bin/yarn
          create  config
          create  config/routes.rb
          create  config/application.rb
          create  config/environment.rb
          create  config/cable.yml
          create  config/puma.rb
          create  config/storage.yml
          create  config/environments
          create  config/environments/development.rb
          create  config/environments/production.rb
          create  config/environments/test.rb
          create  config/initializers
          create  config/initializers/application_controller_renderer.rb
          create  config/initializers/assets.rb
          create  config/initializers/backtrace_silencers.rb
          create  config/initializers/content_security_policy.rb
          create  config/initializers/cookies_serializer.rb
          create  config/initializers/cors.rb
          create  config/initializers/filter_parameter_logging.rb
          create  config/initializers/inflections.rb
          create  config/initializers/mime_types.rb
          create  config/initializers/new_framework_defaults_6_0.rb
          create  config/initializers/wrap_parameters.rb
          create  config/locales
          create  config/locales/en.yml
          create  config/master.key
          append  .gitignore
          create  config/boot.rb
          create  config/database.yml
          create  db
          create  db/seeds.rb
          create  lib
          create  lib/tasks
          create  lib/tasks/.keep
          create  lib/assets
          create  lib/assets/.keep
          create  log
          create  log/.keep
          create  public
          create  public/404.html
          create  public/422.html
          create  public/500.html
          create  public/apple-touch-icon-precomposed.png
          create  public/apple-touch-icon.png
          create  public/favicon.ico
          create  public/robots.txt
          create  tmp
          create  tmp/.keep
          create  tmp/pids
          create  tmp/pids/.keep
          create  tmp/cache
          create  tmp/cache/assets
          create  vendor
          create  vendor/.keep
          create  test/fixtures
          create  test/fixtures/.keep
          create  test/fixtures/files
          create  test/fixtures/files/.keep
          create  test/controllers
          create  test/controllers/.keep
          create  test/mailers
          create  test/mailers/.keep
          create  test/models
          create  test/models/.keep
          create  test/helpers
          create  test/helpers/.keep
          create  test/integration
          create  test/integration/.keep
          create  test/channels/application_cable/connection_test.rb
          create  test/test_helper.rb
          create  test/system
          create  test/system/.keep
          create  test/application_system_test_case.rb
          create  storage
          create  storage/.keep
          create  tmp/storage
          create  tmp/storage/.keep
          remove  config/initializers/cors.rb
          remove  config/initializers/new_framework_defaults_6_0.rb
             run  bundle install
    
    
    

    It's not finished yet,What I can do is just wait for install is down.

  • 相关阅读:
    修改Firebug字体
    [CodeWars][JS]如何判断给定的数字是否整数
    [CodeWars][JS]实现链式加法
    【ACM成长之路】刷题记录
    【C++】用于ACM/OI等算法竞赛的读入优化
    C# 读取写入excel单元格(包括对excel的一些基本操作)
    Git上传本地项目到GitHub等云托管仓库
    贝塞尔曲线(B-spline)的原理与应用
    【已解决】Ubuntu U盘启动出现“Failed to load ldlinux.c32”问题
    【算法】Tarjan算法求强连通分量
  • 原文地址:https://www.cnblogs.com/ukzq/p/13360161.html
Copyright © 2020-2023  润新知