From 1f8a8fb1e77b2f001118a3b8b8fc0cb04c61b581 Mon Sep 17 00:00:00 2001 From: JGAexeter <169368946+JGAexeter@users.noreply.github.com> Date: Wed, 11 Sep 2024 02:11:12 +0000 Subject: [PATCH 1/2] Initial commit From 2d0bacff7bc6689892643318039297db7cdbf583 Mon Sep 17 00:00:00 2001 From: JGAexeter <169368946+JGAexeter@users.noreply.github.com> Date: Tue, 10 Sep 2024 19:46:59 -0700 Subject: [PATCH 2/2] Reference Att Utility --- Att Utility | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Att Utility diff --git a/Att Utility b/Att Utility new file mode 100644 index 0000000..4e6220c --- /dev/null +++ b/Att Utility @@ -0,0 +1,31 @@ +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'att/codekit/version' + +Gem::Specification.new do |spec| + spec.name = "att-codekit" + spec.version = Att::Codekit::VERSION + spec.authors = ["kh455g"] + spec.description = %q{Standardized interface for making calls to ATT's cloud API services} + spec.summary = %q{Codekit for accessing AT&T's cloud services} + spec.homepage = "http://developer.att.com" + spec.license = "Apache 2.0" + spec.has_rdoc = true + + spec.files = Dir['lib/**/*', 'examples/**/*'] + spec.files += Dir['*.gemspec', 'Gemfile', 'Rakefile', 'README.md'] + 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"] + + #install dependencies + spec.add_development_dependency "rake" + spec.add_development_dependency "yard" + spec.add_development_dependency "bundler", "~> 1.3" + + #runtime dependencies + spec.add_runtime_dependency "json" + spec.add_runtime_dependency "immutable_struct" + spec.add_runtime_dependency "rest-client" +end