0.0
No commit activity in last 3 years
No release in over 3 years
My collection of library that I have used that can be shared across multiple projects
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 2.14
~> 5.11
~> 0.11
~> 12.3
~> 0.53

Runtime

~> 0.6
~> 0.20
 Project Readme

agile_utils

Gem Version Dependency Status Code Climate

My collection of ruby libraries that I have used in more than one projects. To promote the code re-use I move them all to this gem. Most of them are from a well known gems, but some are written from scratch. I hope you will find some of them useful for your interesting project.

Start from version 0.1.0, the newer version will be released based on the Semantic Versioning.

Installation

Add this line to your application's Gemfile:

gem 'agile_utils'

And then execute:

$ bundle

Or install it yourself as:

$ gem install agile_utils

Usage

# Require and include the library in your code
require 'agile_utils'
include AgileUtils

# Then call the right method to use.
AgileUtils::Helper.capture
AgileUtils::Helper.linux?
AgileUtils::Helper.osx?
AgileUtils::Helper.make_list
AgileUtils::Helper.shell
AgileUtils::Helper.time
AgileUtils::Helper.uname
AgileUtils::FileUtil.find
AgileUtils::FileUtils.delete
AgileUtils::FileUtils.gunzip
AgileUtils::FileUtils.tar_gzip_files

Contributing

  1. Fork it ( http://github.com/agilecreativity/agile_utils/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request