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
解决在Rails 下引用bootstrap没有效果
(1)首先需要在
gemfile
文件里添加bootstrap, gem'bootstrap-scss'(2)在终端下执行bundleinstall(3)bundle完之后需要在appcication.css
furw
·
2015-04-29 12:00
Sensu源码剖析
代码结构sensu/├╴bin/#启动脚本│├╴sensu-api│├╴sensu-client│└╴sensu-server│├╴CHANGELOG.md├╴CONTRIBUTING.md├╴
Gemfile
jamie.wang
·
2015-04-20 11:00
sensu
ruby
Sensu源码剖析
代码结构sensu/├╴bin/#启动脚本│├╴sensu-api│├╴sensu-client│└╴sensu-server│├╴CHANGELOG.md├╴CONTRIBUTING.md├╴
Gemfile
jamie.wang
·
2015-04-20 11:00
sensu
ruby
Rails开发中使用byebug调试器
配置
Gemfile
如下:group:development,:testdo...gem'byebug','3.4.0'...end就能轻松获取byebug的功能。在代码中设置断
远方的落日
·
2015-04-09 00:00
ruby
ruby-on-rails
自己写的rails登录界面
string password_salt:string rake db:migrate rails dbconsole rails g controller sessions new
Gemfile
wupengyu111
·
2015-04-07 20:00
Rails
自己写的rails登录界面
string password_salt:string rake db:migrate rails dbconsole rails g controller sessions new
Gemfile
wupengyu111
·
2015-04-07 20:00
Rails
device登录认证插件2
http://kinda22.blog.51cto.com/2969503/1587991在一个Rails项目中安装:1234567891011121314#在
Gemfile
中添加,目前版本3.4.1gem
wupengyu111
·
2015-04-07 20:00
device
device登录认证插件2
http://kinda22.blog.51cto.com/2969503/1587991在一个Rails项目中安装:1234567891011121314#在
Gemfile
中添加,目前版本3.4.1gem
wupengyu111
·
2015-04-07 20:00
device
device登录认证插件2
http://kinda22.blog.51cto.com/2969503/1587991在一个Rails项目中安装:1234567891011121314#在
Gemfile
中添加,目前版本3.4.1gem'devise
wupengyu111
·
2015-04-07 20:00
RSpec安装
(1)
Gemfile
中加入,如下Gem包: rspec-rails factory_girl_rails faker capybara database_cleaner
默默君
·
2015-04-07 16:00
测试
TDD
Ruby
rspec
集成测试
Capistrano 使用
Gemfile
中添加: gem 'capistrano' gem 'capistrano-bundler' gem 'capistrano-rails' gem 'capistrano-rvm
zhangcaiyanbeyond
·
2015-03-31 11:00
capistrano
Capistrano 使用
阅读更多
Gemfile
中添加:gem'capistrano'gem'capistrano-bundler'gem'capistrano-rails'gem'capistrano-rvm'执行命令bundleexeccapinstall
zhangcaiyanbeyond
·
2015-03-31 11:00
capistrano
Capistrano 使用
阅读更多
Gemfile
中添加:gem'capistrano'gem'capistrano-bundler'gem'capistrano-rails'gem'capistrano-rvm'执行命令bundleexeccapinstall
zhangcaiyanbeyond
·
2015-03-31 11:00
capistrano
rails gem 'faye' 聊天系统
首先在
Gemfile
中添加gem'faye-rails'gem'thin'//我
tianlitao
·
2015-03-26 21:00
device登录认证插件
編輯
Gemfile
加上 gem 'devise' 輸入bundle install安裝此套件 輸入rails g devise:install產生
wupengyu111
·
2015-03-26 19:00
Rails
device登录认证插件
編輯
Gemfile
加上 gem 'devise' 輸入bundle install安裝此套件 輸入rails g devise:install產生
wupengyu111
·
2015-03-26 19:00
Rails
device登录认证插件
編輯
Gemfile
加上gem'devise'輸入bundleinstall安裝此套件輸入railsgdevise:install產生devise設定檔編輯config/environments/development.rb
wupengyu111
·
2015-03-26 19:00
rails
device登录认证插件
編輯
Gemfile
加上gem'devise'輸入bundleinstall安裝此套件輸入railsgdevise:install產生devise設定檔編輯config/environments/development.rb
wupengyu111
·
2015-03-26 19:00
rails
爬虫实现(hpricot)
1.基本代码在
gemfile
中加入gem"hpricot",bundlerinstall之后,在application。
鞋带松了
·
2015-03-11 15:00
Rails项目结构详解
应用程序根目录
Gemfile
:应用程序的依赖关系配置(gem)。修改后通过bundleinstall应用。
莫问viva
·
2015-03-05 15:00
非mongodb数据库如何使用mongodb生成的主键id
场景:由于某种原因没有选择使用mongodb作为数据库,但是又在数据库中增加了_id作为主键 问题: 1 如何自动生成_id 2 如何在保存对象的时候设置_id 生成_id的解决办法:
Gemfile
hnus
·
2015-03-04 18:00
mongodb
常见问题
1user.save数据能保存进数据库(attr_accessible不能用),在
Gemfile
中添加 gem"protectedattributes"2railsconsole出现错误:Bundlerisusingabinstubthatwascreatedforadifferentgem.Thisisdeprecated
daniel-john
·
2015-03-02 18:00
rspec错误集锦
1 bundleexecrspecspec/时出现错误undefinedmethod`visit'for#解决办法及原因(要先安装capybara并在
gemfile
中加上gem'capybara')ThishappensbecauseyouaretryingusevisitmethodfromCapybara
daniel-john
·
2015-02-26 14:00
windows ruby on rails安装与命令rails server 启动失败显示帮助选项解决
rubyinstaller2.1.5安装,修改source:gemsources--removehttps://rubygems.org/gemsources-ahttps://ruby.taobao.org/再就是搜索所有的
Gemfile
suirosu
·
2015-02-19 19:00
rake :You have already activated rake 10.1.0
You have already activated rake 10.1.0, but your
Gemfile
requires rake 10.0.3.
·
2015-02-06 14:00
ready
Rails + Bootstrap个人博客搭建的完整过程(1)
Part1-首先最基本的,创建一个新的的project:railsnewblog-然后修改source为https://ruby.taobao.com,加入bootstrap的gem到
Gemfile
:gem'twitter-bootstrap-rails
BluesChow
·
2015-01-09 11:00
Creating a 100% ajax CRUD using rails 3 and unobtrusive javascript
Creating the project and setting the
Gemfile
Edited: Just corrected the misspelling on the title "
tongxiaoming520
·
2014-12-29 22:00
JavaScript
ror配置unicorn部署
rails程序,下面这种方式应该是共享socket,不断fork子进程,有点类似php-fpm的模式 安装unicorn gem install unicorn 或者在你的项目里修改
gemfile
·
2014-12-10 15:00
ror
devise第三方认证插件
在一个Rails项目中安装:#在
Gemfile
中添加,目前版本3.4.1 gem 'devise' #然后只需bundle install 安装它.. bundle install #初始化devise
kinda22
·
2014-12-09 16:27
Rails
devise第三方认证插件
在一个Rails项目中安装:#在
Gemfile
中添加,目前版本3.4.1gem 'devise'#然后只需bundle install 安装它..bundle install#初始化deviserails
kinda22
·
2014-12-09 16:27
rails
Rails
devise第三方认证插件
在一个Rails项目中安装:#在
Gemfile
中添加,目前版本3.4.1 gem 'devise' #然后只需bundle install 安装它.. bundle install #初始化devise
kinda22
·
2014-12-09 16:27
Rails
install metric_fu
metric_fu Installation gem install metric_fu Gem From your
Gemfile
,install these gems
chengyuanheng
·
2014-12-04 11:00
Install
Build Great APIS with Grape
grape ruby 1.9.3 + rails 3.2.18add to the
Gemfile
```ruby# APIgem 'grape', '0.7.0'gem 'grape-entity
michael_roshen
·
2014-12-02 18:00
api
REST
grape
Carrierwave
1.在你的rails项目的
Gemfile
中加入gem'carrierwave'2.安装这个gembundleinstall
逆天子军少
·
2014-12-02 00:00
Carrierwave
1.在你的rails项目的
Gemfile
中加入 gem 'carrierwave' 2.安装这个gem bundle
逆天子军少
·
2014-12-02 00:00
IE
介绍 Rails 4.0 的 Turbolinks
David Heinemeier Hansson, Ruby on Rail创始人,最新在 Twitter 发布 上发布一个叫做Turbolinks的新功能,会在Ruby on Rails 4.0版本的
Gemfile
michael_roshen
·
2014-11-18 17:00
Turbolinks
RAILS自动测试环境部署
阅读更多
gemfile
#source'https://rubygems.org'source'http://ruby.taobao.org'ruby'2.1.1'#BundleedgeRailsinstead
wudixiaotie
·
2014-11-15 14:00
RAILS自动测试环境部署
gemfile
# source 'https://rubygems.org' source 'http://ruby.taobao.org' ruby '2.1.1' # Bundle
wudixiaotie
·
2014-11-15 14:00
Rails
rails利用big_sitemap生成sitemap
#
Gemfile
gem'big_sitemap' #lib/tasks/sitemap.rake require'big_sitemap' namespace:customdo desc"Generatesitemap
wangyuyu
·
2014-11-12 18:00
erb和slim的速度比较
我用的gem版本如下:
gemfile
source 'https://rubygems.org' ruby '2.1.1' # Bundle edge Rails instead: gem
wudixiaotie
·
2014-11-10 10:00
比较
Gemfile
指定gem来源的四种方式
Gemfile
的作用无非就是告诉bundler你的项目具体都需要哪些gem,这些gem都需要哪些版本,以及从哪获取这些gem。
Martin91
·
2014-11-05 00:00
gem
rubygems
Gemfile
指定gem来源的四种方式
Gemfile
的作用无非就是告诉bundler你的项目具体都需要哪些gem,这些gem都需要哪些版本,以及从哪获取这些gem。
Martin91
·
2014-11-05 00:00
rubygems
gem
rails 4 自定义脚手架配置
rails 4 项目 rails -v # => 4.1.7 rails new customgenerator --skip-bundle # edit the gem source in
Gemfile
flowerwrong
·
2014-11-04 10:00
性能监控的好工具 - NewRelic简介
首先你需要在网站上注册一个新帐号,根据服务器端的应用框架选择安装对应的插件,它提供了很多常见应用框架插件,以Rails为例子,只需要在
Gemfile
配置,执行bundleinstall即可: gem'newrelic_rpm
QuakeWang
·
2014-10-31 15:00
new
Rails4 使用 carrierwave上传图片
Rails4 使用 carrierwave上传图片1. gem install carrierwave2. add to
Gemfile
3. bundle install4.
michael_roshen
·
2014-10-30 09:00
文件上传
carrierwave
rails调试工具pry
安装在
Gemfile
中添
michael_roshen
·
2014-10-11 10:00
调试
pry
ruby on rails4的session数据库存储方式
1.找到项目的
gemfile
文件修改它: 添加gem'activerecord-session_store
panguixiang
·
2014-09-26 16:37
session
rails4
Redmine 访问太缓慢--问题解决
自带的Webrick服务器windows环境Redmine版本是2.5.2Rils版本:3.2.19Ruby版本:1.9执行:geminstallmongrel--prv(两横线)然后修改Redmine下
gemfile
猪刚烈
·
2014-09-24 13:00
bundle install 命令
Bundle介绍:Rails3中引入Bundle来管理项目中所有gem依赖,该命令只能在一个含有
Gemfile
的目录下执行,如rails3项目的根目录。
huaishu
·
2014-08-23 15:53
项目管理
bundle install 命令
Bundle介绍:Rails3中引入Bundle来管理项目中所有gem依赖,该命令只能在一个含有
Gemfile
的目录下执行,如rails3项目的根目录。
huaishu
·
2014-08-23 15:00
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
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
其他