README.md in ruby-units-1.4.4 vs README.md in ruby-units-1.4.5

- old
+ new

@@ -8,11 +8,11 @@ ## Introduction Many technical applications make use of specialized calculations at some point. Frequently, these calculations require unit conversions to ensure accurate results. Needless to say, this is a pain to properly keep track of, and is prone to numerous errors. ## Solution -The 'Ruby units' gem is designed so simplify the handling of units for scientific calculations. The units of each quantity are specified when a Unit object is created and the Unit class will handle all subsequent conversions and manipulations to ensure an accurate result. +The 'Ruby units' gem is designed to simplify the handling of units for scientific calculations. The units of each quantity are specified when a Unit object is created and the Unit class will handle all subsequent conversions and manipulations to ensure an accurate result. ## Installation: This package may be installed using: `gem install ruby-units` ## Usage: @@ -175,12 +175,12 @@ Sometimes the default class 'Unit' may conflict with other gems or applications. Internally ruby-units defines itself using the RubyUnits namespace. The actual class of a unit is the RubyUnits::Unit. For simplicity and backwards compatiblity, the '::Unit' class is defined as an alias to '::RubyUnits::Unit'. To load ruby-units without this alias... - require 'ruby-units/namespaced' + require 'ruby_units/namespaced' When using bundler... - gem 'ruby-units', require: 'namespaced' + gem 'ruby-units', require: 'ruby_units/namespaced' Note: when using the namespaced version, the Unit('unit string') helper will not be defined.