E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Gemfile
Grape 创建API
基本步骤:1.安装所需gem在
Gemfile
中添加grape-swagger和grape-swagger-rails这两个gem。
biubiudog
·
2020-03-07 05:13
rails实现注册登录模块
准备工具rubyv2.2.6railsv5.0.0.1开整新建项目railsnewblog进入目录cdblog在
Gemfile
添加gem"rails-i18n"#用于本地化gem"slim-rails"
ahtest
·
2020-03-06 16:57
Titanium 使用rpush 实现ios端消息推送
rpushgithub文档中介绍了rpush安装使用的方法,现将步骤整理一下,并对某些环节进行说明:一、服务器端设置1.将rpush加入到
Gemfile
中:gem'rpush'$bundleinstall2
ifree321
·
2020-03-01 20:51
Mongoid学习
1.安装mongoid在Rails配置文件
Gemfile
中,做如下配置gem'mongoid','~>5.0.0'2.配置文件执行railsgmongoid:config即可生成myapp/config
AQ王浩
·
2020-02-28 16:42
ckeditor 安装 实现上传图片 插入附件
一安装ckeditor1
gemfile
中增加gem'ckeditor'2编辑app/assets/javascripts/admin.js增加//=requireckeditor/init3编辑app/
bigbug_
·
2020-02-27 00:16
Bootstrap
1.rails中使用bootstrap#
gemfile
中添加gemgem'bootstrap-sass'#修改文件application.css为application.scss#如上文件中,添加如下代码
Jayzen
·
2020-02-25 10:08
ruby on rails 集成测试-1
这里,我的集成测试用的是capybara+rspec一、有
Gemfile
里添加gem引用gem'rspec-rails','~>3.5'gem'factory_girl_rails'gem'database_cleaner
limx
·
2020-02-23 14:06
ruby 给大家推荐一个好用的 excel 读写的 gem
安装:1、在
Gemfile
中添加gem'ld'2、运行bundleinstallbundleinstall用法:1、写一个Excel#创建一个新的excel文件,指定要保存的文件路径(,这里用的是相对路径
老刘同学00
·
2020-02-20 02:27
ckeditor用法(富文本编辑)
在
gemfile
中添加#富文本编辑gem'ckeditor'#图片处理gem'mini_magick'#上传gem'carrierwave','~>1.0'这里carrierwave上传也可以搭配其他的
程序萌
·
2020-02-18 16:39
To https://git.heroku.com/afternoon-mountain-83271.git ! [rejected] master -> master (non...
Therewasanerrorparsing`
Gemfile
`:syntaxerror,unexpectedend-of-input,expectingend.Bundlercannot
战地小兵
·
2020-02-18 12:48
[055]Ruby on Rails學習筆記(7)-Carrierwave Implementation
Carrierwave使用實作特點:使用彈性、易於整合step1:先在
gemfile
中加入gem'carrierwave'與gem'Mini_magick'後者是調整圖片size,接著輸入bundleinstall
小慷
·
2020-02-17 19:54
Rails中Factory_girl的用法
安装Factory_girl在
Gemfile
中添加一行gem"factory_girl_rails"然后bundleinstall配置Factory_girl注:因为我的测试框架是Rspec所以我们要进行一些配置
Ruby_x_Swift
·
2020-02-17 04:21
demo for delayed_job gem
配置STEP1如果使用数据库存储任务队列,在
Gemfile
中加入gem'delayed_job_active_record'然后执行bundleinstallSTEP2生成delayed_job需要的文件
五月的约修亚
·
2020-02-15 05:56
rspec + guard + spork +database_clean+selenium
在
gemfile
中加入如下文件group:development,:testdogem"rspec-rails","~>2.14.0"#封装RSpec的程序,还包含了一些专为Rails提供的功能gem"factory_girl_rails
杜小龙
·
2020-02-14 04:49
Rails项目运行时出现"tzinfo-data is not present."错误
解决办法一:1.在
Gemfile
文件中添加gem'tzinfo-data'2.bundleinstall3.railss重启即可解决办法二:1.还一种可能是rails默认在
Gemfile
生成的是"gem'tzinfo-data
苑畅
·
2020-02-14 04:26
全栈营 10-2 app上传heroku遇挫:ruby版本问题
全栈营论坛上找到的,所以要站在巨人的肩膀上才行):https://forum.qzy.camp/t/heroku-you-have-not-declared-a-ruby-version-in-your-
gemfile
小李飞啊飞
·
2020-02-11 11:27
fastlane:plugins couldn't loaded
howevertheycouldn'tbeloadedPleasefollowthetroubleshootingguide:https://docs.fastlane.tools/plugins/plugins-troubleshooting/一般需要检查
Gemfile
little_ma
·
2020-02-11 07:26
玩具应用toy_app
创建toy-app应用:cd~/workspacerailsnewtoy_appcdtoy_app/参照使用Heroku部署hello_app,修改
Gemfile
文件,然后执行:bundleinstall
TW冯雯
·
2020-02-09 00:22
Rails 连接SQL SERVER
项目里配置sqlserver新建项目的使用-dsqlserver,比如railsnewdemo-dsqlserver在生成的config/database.yml文件里,会有一些很有用的提示比如,要确保
Gemfile
gimp
·
2020-02-08 13:55
Jekyll 本地安装运行
1、新建
Gemfile
文件$ls$>
Gemfile
2、编辑Gemfilesource'https://rubygems.org'gem'github-pages',group::jekyll_plugins3
Mr_Wendao
·
2020-02-07 01:08
Rails 整合 ElasticSearch 到现有 Rails 项目
在
Gemfile
中加入gem'elasticsearch-model'gem'elasticsearch-rails'注意:es-model自带了分页插件,如果你在
gemfile
中有分页,如will_paginate
ibob2012
·
2020-02-06 00:50
可定制化的分页引擎 Kaminari
####安装在
Gemfile
中添加以下代码:gem'kaminari'然后运行bundle安装。####使用以用户的文章分页来试验如何通过kaminari来实现分页功能在model中配
ibob2012
·
2020-02-05 12:32
ubuntu rails capistrano deploy
capistranogem'rvm-capistrano'gem'capistrano'配置database.yml注意rubyrails的版本本地的要与服务器的一致部署时ignore掉所有需要保密的文件,比如databse.yml,applicate.yml修改了
gemfile
杜小龙
·
2020-01-08 18:47
如何自动生成和安装requirements.txt依赖
这个文件有点类似与Rails的
Gemfile
。其作用是用来在另一台PC上重新构建项目所需要的运行环境依赖。
jatrix
·
2020-01-01 09:55
ruby on rails 里使用SideKiq 做后台任务
环境:ubuntu14.4,ruby2.1.5,rails4.2一、新一个rais项目:railsnewactive_job--skip-bundle进入项目文件夹:cdactive_job打开
Gemfile
limx
·
2019-12-30 05:31
rails中实现定时任务的之sidetiq
环境:ubuntu14.4,ruby2.1.5,rails4.2sidetiq依赖于sidekiq,所以在
Gemfile
里要添加sidekiq。
limx
·
2019-12-29 16:24
simple_form&bootstrap简单应用
添加gem#
Gemfile
中gem'bootstrap-sass'gem'simple_form'配置bootstrap#assets/stylesheets/application.css.scss中增加
kamionayuki
·
2019-12-29 04:25
ruby on rails 中使用phantomjs 生成pdf
一、新建项目railsnewapp--skip-bundle完成后修改
Gemfile
文件:vimGemfile把source修改成taobao或者ruby-china的源。
limx
·
2019-12-28 16:25
【程序员笔记】ruby开发疑难杂症汇总
课程设计牵扯到ruby开发,中间碰到问题,特此记录1.TypeError:对象不支持此属性或方法一个令人头疼的问题具体解决方法在
gemfile
中添加gem'coffee-script-source','
李庆文
·
2019-12-27 02:54
[翻译]使用ruby的commander构建CLI-Builidng a CLI Using Ruby Commander
原文在cli-using-ruby-commander这是一篇使用ruby和commander来构建一个命令行交互app(commandlineinterface,CLI).
Gemfile
创建一个工程目录
yohunl
·
2019-12-24 01:54
ruby on rails 中使用pdfkit生成pdf
一、新建项目railsnewmypdf--skip-bundle进入项目:cdmypdf,打开
Gemfile
:vimGemfile修改source为https://ruby.taobao.com添加:gem'pdfkit
limx
·
2019-12-22 14:03
Rspec+Factory_girl, Guard跑测试 (一)
一
Gemfile
添加group:development,:testdogem'rspec-rails','~>3.0.0'gem'factory_girl_rails'gem'guard-rspec',
daneil
·
2019-12-22 13:02
ruby on rails 中使用phantomjs,并使用cookie
一、新建项目railsnewapp--skip-bundle完成后修改
Gemfile
文件:vimGemfile把source修改成taobao或者ruby-china的源。
limx
·
2019-12-15 00:21
使用Bundler和
gemfile
指定CocoaPods依赖
我相信大家都是聪明人,早已知道使用CocoaPods来操作Xcode项目的第三方依赖,如果你还没有使用过CocoaPods,推荐使用!另外有一个Carthage可以对依赖去中心化,以便减少这种控制包对Xcode项目的注入性,但不是本文的问题核心点,故不涉及!为什么会有这篇文档?因为今天为同事执行Podinstall--verbose死活不成功(具体error忘截图了),最后才发现CocoaPods
三角君
·
2019-12-13 13:02
Everyday-rails-rspec - 安装Rspec
在
Gemfile
中添加下面的gem依赖。
天醒了我亮了
·
2019-12-12 16:31
Fastlane配置中的常见问题
1、bundleupdating在你执行fastlaneinit后会一直停留在这里,这时候需要control+c取消,然后打开项目路径下的
Gemfile
,讲里面的source跟换为https://gems.ruby-china.com
戎码一生为了谁
·
2019-12-12 04:33
ruby on rails 中使用phantomjs生成pdf,并使用cookie,支持https
一、新建项目railsnewapp--skip-bundle完成后修改
Gemfile
文件:vimGemfile把source修改成taobao或者ruby-china的源。
limx
·
2019-11-30 19:10
rails 笔记
modelrailsgscaffoldUsername:stringemail:stringrailsdb:migraterake命令Rails5之前使用rake使用Rake时,要确保使用的是Rails应用
Gemfile
xingkong_s
·
2019-11-30 09:31
sidekiq的定时任凭之Sidekiq-Cron
其它类似包:minicron、resque-scheduler、rufus-scheduler、Clockwork、sidekiq-scheduler一、安装geminstallsidekiq-cron或者在
Gemfile
limx
·
2019-11-29 20:19
grape rails接口应用
2.安装#
gemfile
添加:gem'grape','~>1.0.2'#当前稳定版本app文件下创建api文件夹,相关接口都在这#在config/application.rb下添加config.paths
fred_ma
·
2019-11-27 22:32
如何在rails应用中使用markdown(装逼利器)
Markdown->程序员装逼利器介绍rails_macdown是封装了editor.md的JS和CSS样式的插件,方便于嵌入到rails应用中,避免在自己的项目中引用太多的JS和CSS文件如何安装在
gemfile
StrongZhao
·
2019-11-08 15:25
nginx unicorn 来运行rails
ubuntu系统里的安装目录是在/etc/nginx/下,启动程序文件在/usr/sbin/nginx二、新建项目railsnewapp--skip-bundle完成后修改
Gemfile
文件:vimGemfile
limx
·
2019-11-06 18:34
rspec 入门教程
这是一个简单的关于RailsRspec的简单的介绍1安装Rspec在Rails的配置文件
Gemfile
配置文件中,配置下面信息group:development,:testdogem'rspec-rails
AQ王浩
·
2019-11-02 12:00
Ubuntu 虚拟机下 Ruby on Rails 的安装
虚拟机下安装rubyrails环境接着上节修改Ruby源https://ruby.taobao.org/进入到该页面进行ruby源的修改和``如果你使用
Gemfile
和Bundle(例如:Rails项目
冰J冰
·
2019-10-31 09:46
修改Gem,Bundler的镜像为国内源
#移除gem默认源,改成ruby-china源$gemsources-rhttps://rubygems.org/-ahttps://gems.ruby-china.com/#使用
Gemfile
和Bundle
商鲲
·
2019-10-25 07:55
Logstash将解析的日志插入MySQL数据库
docker)Dockerfile如下:FROMlogstash:7.4.0RUNsed-i's#https://rubygems.org#https://gems.ruby-china.com#g'
Gemfile
rong341233
·
2019-10-24 10:14
logstash
mysql
ELKStack
ruby、rvm、gem、gems、bundle、
gemfile
简单总结
rubyruby是日本人发明的,是一种简单快捷的面向对象的脚本语言。ruby可运行于多种平台,如Windows、macOS和Unix的各种版本。语言的主要特点是:完全面向对象。在ruby语言中,任何东西都是对象,包括其他语言中的基本数据类型,比如整数。变量没有类型。ruby的变量可以保存任何类型的数据。任何都有值。不管是数学或者逻辑表达式还是一个句子,都会有值。ruby语言很优雅,可以做到不需要注
小生不怕
·
2019-10-08 11:21
在Ruby on Rails上使用Redis Store的方法
如何使用:对于在Rails上使用RedisStore,首先我们需要在
Gemfile
文件中添加入口gem'redis-rails'gem'redis-rack-cache'#optional然后我们就会有如下选择
·
2019-09-23 22:51
Ruby on Rails基础之新建项目
config/#路由、数据库等+db/#数据库模式、迁移文件+lib/#扩展模块+log/#日志+public/#公共资源+test/#单元测试-config.ru#Rack服务器的程序设置、用于启动程序-
Gemfile
·
2019-09-22 16:36
使用RubyMine如何选择Ruby解释器
打开项目后,有必要选择所需的Ruby解释器并安装项目的
Gemfile
中指定的依赖项:1按⌃⌥S(shift+option+S)打开“设置/首选项”对话框,转到“语言和框架”|RubySDK和Gems页面并选择所需的解释器
唯我独白cj
·
2019-09-12 16:13
Ruby解释器
RubyMine
编程开发
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他