内容简介:Sometimes I come across cases where I need to write a simple script which uses a gem. The simplest way to go about this is toBundler has an inline gemfile definition feature that lets you define gem dependencies in a single-file Ruby script. To use this fe
Sometimes I come across cases
where I need to write a simple script which uses a gem.
The simplest way to go about this
is to gem install gem-name
and then require 'gem-name'
in your script.
However, this means that you need to remember
to install the gem before running the script.
Bundler has an inline gemfile definition feature
that lets you define gem dependencies in a single-file Ruby script.
To use this feature,
require 'bundler/inline'
and provide a gemfile
block
that has the code that you normally put in a Gemfile
.
require 'bundler/inline'
gemfile do
source 'https://rubygems.org'
gem 'benchmark-ips', require: 'benchmark/ips'
end
Benchmark.ips do |x|
x.report('original') { naive_implementation() }
x.report('optimized') { fast_implementation() }
x.compare!
end
Now running ruby myfile.rb
will automatically install the gem
and run the script.
I always have a script like the above one handy. When suggesting a performance optimization when reviewing some code, it’s useful to be able to share a script like that. This lets the PR author to easily copy and tweak it without having to worry about installing the necessary gems.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
More Effective C++(中文版)
梅耶(Scott Meyers) / 侯捷 / 电子工业出版社 / 2011-1-1 / 59.00元
《More Effective C++:35个改善编程与设计的有效方法(中文版)》是梅耶尔大师Effective三部曲之一。继Effective C++之后,Scott Meyers于1996推出这本《More Effective C++(35个改善编程与设计的有效方法)》“续集”。条款变得比较少,页数倒是多了一些,原因是这次选材比“一集”更高阶,尤其是第5章。Meyers将此章命名为技术(tec......一起来看看 《More Effective C++(中文版)》 这本书的介绍吧!