rents.gemspec in rents-0.1.8 vs rents.gemspec in rents-0.1.9

- old
+ new

@@ -16,21 +16,29 @@ spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] + #================== GEMs to build it GEM, so its improve the development ============================== + # Base GEMs to build it gem spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake", "~> 10.3", '>= 10.3.2' # RSpec for tests spec.add_development_dependency "rspec", "~> 3.1", '>= 3.1.0' # Coverage spec.add_development_dependency 'simplecov', '~> 0.7', '>= 0.7.1' # Create readable attrs values spec.add_development_dependency 'faker', '~> 1.4', '>= 1.4.2' + + #================== GEMs to be used when it is called on a project ==================================== # For real user operator IP (4GeoLoc) spec.add_dependency 'curb', "~> 0.8", '>= 0.8.6' # HTTP REST Client spec.add_dependency "rest-client", '~> 1.7', '>= 1.7.2' # Easy JSON create spec.add_dependency "multi_json", '~> 1.10', '>= 1.10.1' + # To pretty print on console + spec.add_dependency "colorize", '~> 0.7.3', '>= 0.7.3' + # To work with the Rails Numeric for currency + spec.add_dependency 'bigdecimal', '~> 1.2.5', '>= 1.2.5' end