内容简介: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.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
年入10万,17岁草根少年的网赚实战
陶秋丰 / 重庆出版集团 / 2009-3 / 28.00元
《年入10万:17岁草根少年的网赚实战》以一个17岁的在校大学生的真实故事为大家讲述草根少年的网络赚钱之旅。随着网络的普及以及网上应用的日益增多,要在网络上谋生并不难,比如网上写稿、网上兼职、威客赚钱、网上开店等,然而要利用互联网赚大钱,并成就一番事业,那么创建并运营一个独立的网站就是一个绝佳的选择。本书的作者正是经历了“网上写稿一网上各类兼职一策划并创建网站一网站推广与运营一年入10万”这一过程......一起来看看 《年入10万,17岁草根少年的网赚实战》 这本书的介绍吧!