1.用终端密令创建Rails项目
在终端输入:
rails new Test //Test 为你的项目名称.
将会出现以下显示:
create create README.rdoc create Rakefile create config.ru create .gitignore create Gemfile create app create app/assets/javascripts/application.js create app/assets/stylesheets/application.css create app/controllers/application_controller.rb create app/helpers/application_helper.rb create app/views/layouts/application.html.erb create app/assets/images/.keep create app/mailers/.keep create app/models/.keep create app/controllers/concerns/.keep create app/models/concerns/.keep create bin create bin/bundle create bin/rails create bin/rake create config create config/routes.rb create config/application.rb create config/environment.rb create config/environments create config/environments/development.rb create config/environments/production.rb create config/environments/test.rb create config/initializers create config/initializers/backtrace_silencers.rb create config/initializers/filter_parameter_logging.rb create config/initializers/inflections.rb create config/initializers/mime_types.rb create config/initializers/secret_token.rb create config/initializers/session_store.rb create config/initializers/wrap_parameters.rb create config/locales create config/locales/en.yml 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/favicon.ico create public/robots.txt create test/fixtures create test/fixtures/.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/test_helper.rb create tmp/cache create tmp/cache/assets create vendor/assets/javascripts create vendor/assets/javascripts/.keep create vendor/assets/stylesheets create vendor/assets/stylesheets/.keep run bundle install
这时候会停在 bundle install ,在这需要等一会。当出现:
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
表示已经完成。如果停在run bundle install 太久你可以按下:
control c //同时按下这两个键
来终止。然后输入:
cd Test
进入到你创建的项目文件夹下面。再接着输入:
bundle install
当终端显示:
Fetching gem metadata from https://rubygems.org/.......... Fetching gem metadata from https://rubygems.org/.. Resolving dependencies... Using rake (10.1.0) Installing i18n (0.6.9) Using minitest (4.7.5) Using multi_json (1.8.2) Using atomic (1.1.14) Using thread_safe (0.1.3) Using tzinfo (0.3.38) Using activesupport (4.0.1) Using builder (3.1.4) Using erubis (2.7.0) Using rack (1.5.2) Using rack-test (0.6.2) Using actionpack (4.0.1) Using mime-types (1.25.1) Using polyglot (0.3.3) Using treetop (1.4.15) Using mail (2.5.4) Using actionmailer (4.0.1) Using activemodel (4.0.1) Using activerecord-deprecated_finders (1.0.3) Using arel (4.0.1) Using activerecord (4.0.1) Using bundler (1.3.5) Using coffee-script-source (1.6.3) Using execjs (2.0.2) Using coffee-script (2.2.0) Using thor (0.18.1) Using railties (4.0.1) Using coffee-rails (4.0.1) Using hike (1.2.3) Installing jbuilder (1.5.3) Using jquery-rails (3.0.4) Using json (1.8.1) Using tilt (1.4.1) Using sprockets (2.10.1) Using sprockets-rails (2.0.1) Using rails (4.0.1) Using rdoc (3.12.2) Using sass (3.2.12) Using sass-rails (4.0.1) Using sdoc (0.3.20) Using sqlite3 (1.3.8) Installing turbolinks (2.0.0) Installing uglifier (2.3.3) Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
表示已经完成。
2.用RubyMine创建Rails项目(本人用的RubyMine版本是5.4)
打开RubyMine:
然后选择:Create New Project ,将会弹出:
在这里,注意要选择: Project type 的选项 为 Rails application 。然后点击 ok,弹出以下界面:
这里要注意 Ruby SDK ,和 Rails Version 的选项,这两个的版本号,是自己电脑上安装的。 还有 Preconfigure for selected database:选项,你可以选择你自己习惯用的数据库。
点击ok后。 将进入:
注意最低下的窗口, 在执行 run bundle install ,这时需要等待。还在终端时一样。等到bundle install 执行完成后就可以啦。
相关推荐
学习Rails项目起步,你需要熟悉这些核心概念,并掌握如何创建和运行Rails应用,以及如何使用Rails的命令行工具。同时,理解MVC模式和Rails的约定优于配置(Convention Over Configuration, CoC)原则是至关重要的。...
这个“Rails项目源代码”是一个使用Rails构建的图片分享网站的完整源代码,它揭示了如何利用Rails的强大功能来创建一个允许用户上传、分享和浏览图片的应用。 1. **Rails框架基础**: Rails的核心理念是DRY(Don't...
在Ubuntu上配置Ruby on Rails框架和RubyMine IDE开发环境是一个重要的步骤,对于想要在Linux环境下进行Web开发的程序员来说,这是必备的知识。Ruby on Rails是一个强大的全栈Web框架,它基于Ruby语言,大大简化了Web...
例如,要在Rails应用中创建一个新的资源,如博客文章,你需要在models目录下创建一个名为`post.rb`的文件,定义Post类,并设置属性如标题和内容。在controllers目录下创建`posts_controller.rb`,定义控制器方法,如...
5. **创建和运行Rails项目**:现在,你已经具备了一个完整的开发环境。在RubyMine中,你可以创建一个新项目,选择“Rails Application”模板。按照向导提示,指定项目名称和位置,RubyMine会自动为你生成基本的Rails...
rails_apps_composer, 一个 gem,为 Rails 启动应用程序创建 Rails 应用程序模板 Rails 应用编辑器 Rails 应用程序编辑器 gem 安装一个 命令行 工具来从"食谱"的Collection 组装 Rails 应用程序。"你可以使用 rails_...
在给定的文件"red_gem"中,可能是一个Rails项目中使用的Gem(Ruby的扩展库)。Gem文件通常包含项目的依赖,例如上述提到的一些组件。通过安装和配置这些Gem,可以极大地提升Rails开发的效率和质量。为了具体了解"red...
Rails的例子通常包含了从创建新的Rails应用开始,一直到部署上线的全部步骤,包括数据库迁移、路由设置、控制器和模型的编写、视图的渲染以及测试的实现。 压缩包内的文件名"rails项目.rar"和"cookbook.rar"可能...
这些工具可以帮助开发者快速创建和验证业务规则,而不必在基础架构上花费过多时间。 至于"zero-rails-master"这个压缩包子文件的名称,"zero"可能代表从零开始或无痛苦的起点,而"master"通常是Git仓库的主分支,...
5. **Gemfile和bundle安装**:在Rails项目的根目录下,你会看到一个`Gemfile`,这里列出了项目所需的所有Gem(Ruby的库)。运行`bundle install`命令,它会根据Gemfile中的依赖关系安装所有必要的库和框架。 6. **...
在大型项目中,高效地搜索和替换代码是必不可少的能力。 - **双Shift**:到处搜索(Searcheverywhere),可以搜索文件、类、动作等。 - **Ctrl + F / R**:查找/替换(Find/Replace)。 - **F3 / Shift + F3**:...
这会生成一个包含所有必要文件和目录结构的新Rails项目。接下来,你可以通过以下命令进入Rails的控制台,也称为Console: ```bash rails c 或者 rails console ``` 在控制台中,你可以直接操作应用的数据模型和...
在使用RubyMine汉化包时,你需要首先确保你已经安装了RubyMine的原始英文版。接着,你可以通过以下步骤来安装汉化包: 1. 下载汉化包:你需要找到适合你当前RubyMine版本的汉化包文件,通常是一个ZIP格式的压缩包。...
描述 这是 Rails 模板。...使用一些设置和有用的宝石创建 rails 项目。 $ git clone git@github.com:yanagi0324/rails-template.git $ rails new [your_app_name] -m ./rails-template/template.rb
这个工具简化了在Rails项目中使用Go进行后端处理的流程,使开发者可以利用Go的性能优势处理高并发请求,同时保留Rails的便捷开发体验。 ### 2. 安装`GoOnRails` 首先,确保你的系统已经安装了Rails和Go。接下来,...
在终端中输入`rails new project_name -v=2.2.3`,其中project_name替换为你的项目名称。 4. **数据库配置**:Rails默认使用SQLite数据库,但你可以根据需求更改到MySQL或PostgreSQL等。修改`config/database.yml`...
4. **更新的框架支持**:随着Rails和其他相关框架的更新,RubyMine也会同步支持最新的技术,确保开发者能够使用到最前沿的开发工具。 5. **改进的用户界面**:新版本可能对界面设计进行了调整,使其更符合人体工程...
为了让MySQL在终端中可以正常使用,我们需要将MySQL的库路径添加到系统的`DYLD_LIBRARY_PATH`环境变量中,并设置别名以简化MySQL命令的使用。 - 显示隐藏文件:在终端中执行以下命令使隐藏文件可见。 ```bash ...
- 创建新项目。 - 设置数据库配置。 - 创建控制器和视图。 - 在浏览器中查看结果。 #### 六、Rails的路由 - **概念介绍**: 路由是连接用户请求URL与应用程序逻辑的关键组件。 - **实现方式**: - 配置文件`...