本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
paulwong - fantaxy025025
- johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- 龙儿筝
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- zxq_2017
- nychen2000
- lzyfn123
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
jekyll : in `require': cannot load such file -- webrick (LoadError)
在使用 JEKYLL 部署的过程中,使用 bundle exec jekyll serve 启动遇到以下错误:
问题1:
bundler: failed to load command: jekyll, `require': cannot load such file -- webrick (LoadError)
我的 Ruby 版本信息如下:
% ruby -v
...
基于docker打ruby镜像包
一:机遇https://hub.docker.com/_/ruby打原生ruby镜像
build.sh
#!/bin/bash
docker build --no-cache -t registry.xxx.com/xs/ruby:2.6.6-ubuntu /data/images/ruby2.6.6-ubuntu/ && \
docker push registry.x ...
Ruby 字符串连接
Ruby 字符串连接
require 'benchmark'
Benchmark.bm do |x|
x.report('par') {
s2 = ''
1000.times { |i| i = i.to_s; s2 = "#{s2}#{i}" }
}
x.report('par') {
s1 = ''
1000.time ...
ruby面试
Block、Proc 与 Lambda的区别: https://www.jianshu.com/p/8a3b3e22e013
alias 与 alias_method 的区别: http://lazybios.com/2015/11/alias-vs-aliasmethod/
yield self 的用法, 写个例子: https://www.jianshu.com/p/d13b2b26 ...
Centos 下安装ruby的总结
这个 可能也不行看ruby官网。
搭建redis集群 logstash-output-clickhouse插件,所以必须先安装ruby,特此记录安装步骤(花了两天时间才安装成功)。
1、先安装gcc
yum install gcc-c++
2、下载ruby安装包
wget https://cache.ruby-lang.org/pub/ruby/2. ...
两对象同时映射一对一和一对多
class Kpi::Team < ApplicationRecord
has_many :crm_teams
has_many :business_managers, through: :crm_teams, source: :business_manager
has_many :account_managers, through: :crm_teams, source ...
基于ruby Mechanize的爬虫
def self.sang_carwler
agent = Mechanize.new
cc1 = ConsumableCategory.find_or_create_by(name: "生命科学", parent_id: 0)
resp = agent.get("https://www.XXX.com").searc ...
ruby 调用savon接口示例
例子一
module Api
module AobotQuotation
def self.query(body = {})
begin
quotation_client = Savon.client(wsdl: "#{Settings.robot_quotation_url}/QuotePriceService.svc?singleW ...