内容简介: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.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Two Scoops of Django
Daniel Greenfeld、Audrey M. Roy / CreateSpace Independent Publishing Platform / 2013-4-16 / USD 29.95
Two Scoops of Django: Best Practices For Django 1.5 is chock-full of material that will help you with your Django projects. We'll introduce you to various tips, tricks, patterns, code snippets, and......一起来看看 《Two Scoops of Django》 这本书的介绍吧!