`
liano
  • 浏览: 25854 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

LOAD_PATH and CLASS_PATH

阅读更多
$LOAD_PATH in ruby.

$LOAD_PATH in ruby is similar to class_path in java.

class_path contains many jar position.
every jar has its own structure leading to a java File.

$LOAD_PATH contains many ruby lib position.
usually, in lib directory, a directory containing different ruby Files can be found.
for example:
../lib/spec/
../lib/spec.rb

$LOAD_PATH can be set up like : $LOAD_PATH << ..../lib
and then we can require what we need like : require "spec",
this way, the spec.rb file is required.
we don't need to specify the entire path in require command.

how does it work in rails?

in rails, the gem libary is included in enviroment.rb usually.
rspec plugin is include in spec.rake, because rspec is runned always by rake.

分享到:
评论

相关推荐

    From_Tool.zip_dll_especiallygbk_load dll_tool_vb.net

    Dim assembly As Assembly = Assembly.LoadFile("Path\To\YourDll.dll") Dim type As Type = assembly.GetType("Namespace.YourClass") Dim instance As Object = Activator.CreateInstance(type) ``` 4. **...

    python定义一个people类 基于python语言实现opencv自带svm检测行人.zip

    self.svm = cv2.ml.SVM_load(model_path) def train_svm(self, samples, labels): # 使用给定的样本和标签训练SVM svm_params = { 'kernel_type': cv2.ml.SVM_LINEAR, 'C': 1.0, 'gamma': 0.0, 'degree': 0...

    人脸识别程序,运用python软件

    if not os.path.isdir(os.path.join(train_dir, class_dir)): continue # 结束当前循环, 进入下一个循环 # 遍历这个人的每一张照片 for img_path in ifi(os.path.join(train_dir, class_dir)): image = fr.load...

    php调用dll

    2. 使用`com_load_dll()`函数加载DLL,如`$comObj = com_load_dll('path/to/工程1.dll');` 3. 创建一个COM对象实例,调用其方法,例如`$instance = new COM("Class1");` 4. 调用DLL中的方法,例如`$result = $...

    bootscale:通过缓存要求调用来加速应用程序启动

    为$LOAD_PATH正确性,每次调用Bootscale.regenerate修改$LOAD_PATH都应更新缓存。 对于Rails应用程序,这意味着在config/application.rb添加一个初始化config/application.rb 。 module MyApp class Application ...

    ( ap6181_sina33m_sc3817r验证通过_20170710_1608没有外层目录.7z

    WIFI_DRIVER_FW_PATH_PARAM := "/sys/module/bcmdhd/parameters/firmware_path" BOARD_USR_WIFI := ap6181 include hardware/broadcom/wlan/bcmdhd/firmware/$(BOARD_USR_WIFI)/device-bcm.mk endif # 2. ...

    linux生成/加载插件(动态库)的方法

    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/your/library ``` 请注意,这种方式不推荐用于长期部署,因为它可能影响其他依赖库的加载。在生产环境中,通常会将动态库安装到系统标准库目录(如`/usr/lib`或`...

    phpcms_v9二次开发手册

    pc_base::load_config('system', 'web_path'); ``` #### 六、CMS入口文件 - **入口文件路径**:位于根目录下的`index.php`。 - **作用**:处理用户请求的引导程序,是唯一的用户可直接请求运行的文件。 - **...

    button.zip_按钮图片改变

    def load_image(file_path): return Image.open(file_path) normal_image = load_image('button_normal.png') hover_image = load_image('button_hover.png') pressed_image = load_image('button_pressed.png') `...

    将数据从excel表中导出到qt的下拉列表框(QComboBox)中

    def load_excel_data(file_path): data = pd.read_excel(file_path) return data excel_data = load_excel_data('your_file.xlsx') ``` 4. 处理数据: `pandas`库返回的数据是一个DataFrame对象,我们可以将其列...

    懒加载lazyload

    &lt;img data-src="image_path2.jpg" class="lazy"&gt; &lt;script src="jquery.lazyload.js"&gt; $(function() { $(".lazy").lazyload(); }); ``` 在上面的代码中,`data-src` 是图片的真实路径,而 `class="lazy...

    freetype库和示例代码

    if (FT_New_Face(library, "path/to/font.ttf", 0, &face)) { printf("Failed to open font file.\n"); return 1; } // 设置为默认字符映射 FT_Set_Char_Size(face, 0, 48 * 64, 96, 96); // 加载字符 FT_...

    php zend 相对路径问题

    php define (‘P_S’, PATH_SEPARATOR); define (‘ROOT’, “../”); set_include_path(ROOT .P_S .’Zend’ .P_S .ROOT.get_include_path()); require_once ROOT.’Zend/Loader.php’; Zend_Loader::loadClass(...

    cifar10-100 读取方法 python

    class_names_cifar10 = np.load(os.path.join(you_dir, "batches.meta")) def one_hot(x, n): """ 将索引表示转换为one-hot表示 """ x = np.array(x) assert x.ndim == 1 return np.eye(n)[x] def _load_...

    2011年1/2月销售数据

    def load_sales_data(file_path): data = pd.read_csv(file_path) sales_objects = [Sale(row['date'], row['product_id'], row['amount']) for _, row in data.iterrows()] return sales_objects sales = load_...

    JPG类,类模块

    class JPG: def __init__(self, file_path): self.file_path = file_path # 初始化其他属性 ``` `__init__`是构造函数,负责初始化新创建的对象。 2. **文件操作**: - **读取**:使用Python的内置库如PIL...

    ci框架利用phpexcel导入excel表格并将其插入数据库

    然后,继承`PHPExcel`类,并使用`load_class()`函数加载库。 ```php class PHPExcel_library extends PHPExcel { public function __construct() { parent::__construct(); } } ``` 接下来,在`config/autoload....

    使用PyQt5将Excel数据导入mysql

    excel_file_path = self.file_path_input.text() host = self.host_input.text() user = self.user_input.text() password = self.password_input.text() db = self.db_input.text() df = read_excel_file...

    Apache与Tomcat整合

    worker.inprocess.class_path=$(workers.tomcat_home)\common\lib\webserver.jar worker.inprocess.class_path=$(workers.java_home)\lib\tools.jar worker.inprocess.cmd_line=-config worker.inprocess.cmd_...

Global site tag (gtag.js) - Google Analytics