# -*- encoding: utf-8 -*- =begin #MX API #The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access. =end $:.push File.expand_path("../lib", __FILE__) require "atrium-ruby/version" Gem::Specification.new do |s| s.name = "atrium-ruby" s.version = Atrium::VERSION s.platform = Gem::Platform::RUBY s.authors = ["MX"] s.email = ["atrium.api@mx.com"] s.homepage = "https://atrium.mx.com" s.summary = "Ruby wrapper for the Atrium API by MX" s.description = "A ruby wrapper for the MX API." s.license = 'MIT' s.required_ruby_version = ">= 1.9" s.add_runtime_dependency 'addressable', '~> 2.3', '>= 2.3.0' s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1' s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0' s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0' s.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.1' s.add_development_dependency 'webmock', '~> 1.24', '>= 1.24.3' s.add_development_dependency 'autotest', '~> 4.4', '>= 4.4.6' s.add_development_dependency 'autotest-rails-pure', '~> 4.1', '>= 4.1.2' s.add_development_dependency 'autotest-growl', '~> 0.2', '>= 0.2.16' s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.12' s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? } s.test_files = `find spec/*`.split("\n") s.executables = [] s.require_paths = ["lib"] end