rents.gemspec in rents-0.0.0 vs rents.gemspec in rents-0.1.0
- old
+ new
@@ -8,16 +8,29 @@
spec.version = Rents::VERSION
spec.authors = ["Ilton Garcia"]
spec.email = ["ilton_unb@hotmail.com"]
spec.summary = 'Rent$ payment Gateway & Intermediary ruby gem'
spec.description = 'Ruby gem for Rent$ payment Gateway & Intermediary'
- spec.homepage = "http://pagerenter.com.br/rents"
+ spec.homepage = "http://pagerents.github.io/rents-sdk-ruby"
spec.license = "MIT"
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"]
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
+
+ # RSpec for tests
+ spec.add_development_dependency "rspec"
+ # Coverage
+ spec.add_development_dependency 'simplecov', '~> 0.7.1'
+ # Create readable attrs values
+ spec.add_development_dependency 'faker', '~> 1.4.2'
+ # For real user operator IP (4GeoLoc)
+ spec.add_dependency 'curb'
+ # HTTP REST Client
+ spec.add_dependency "rest-client"
+ # Easy JSON create
+ spec.add_dependency "multi_json"
end