rails-basic-template:基本 Rails 模板

时间:2024-07-21 13:01:56
【文件属性】:

文件名称:rails-basic-template:基本 Rails 模板

文件大小:67KB

文件格式:ZIP

更新时间:2024-07-21 13:01:56

Ruby

Rails 基本模板 参考: : Ruby on Rails Gemfile:定义应用程序正在使用的库的文件 bundle install:基于Gemfile,安装所有库 每次修改 Gemfile 时都应该运行bundle install gem 是 Ruby 的库 RubyGems.org 是一个查找和下载 Ruby gem 的地方 新的 Rails 应用 rails new -BT 在 Gemfile 中更改以下内容 # use '4.1.6' for heroku gem 'rails' , '4.1.6' # Use postgresql as the database for Production gem 'pg' , group : :production # Use sqlite3 as the database for Development


【文件预览】:
rails-basic-template-master
----.gitignore(541B)
----app()
--------mailers()
--------assets()
--------models()
--------helpers()
--------views()
--------controllers()
----config.ru(154B)
----bin()
--------rails(146B)
--------bundle(129B)
--------rake(90B)
----log()
--------.keep(0B)
----db()
--------seeds.rb(343B)
----public()
--------robots.txt(202B)
--------422.html(2KB)
--------favicon.ico(0B)
--------500.html(1KB)
--------404.html(2KB)
----README.md(1KB)
----vendor()
--------assets()
----config()
--------boot.rb(170B)
--------secrets.yml(964B)
--------database.yml(552B)
--------routes.rb(2KB)
--------environments()
--------environment.rb(150B)
--------application.rb(1KB)
--------locales()
--------initializers()
----lib()
--------assets()
--------tasks()
----Gemfile(1KB)
----Rakefile(249B)
----Gemfile.lock(3KB)

网友评论