Sha256: 89fc8b3b2d037ed1c1e927a8fcbc93c84a180c84afa66bb5573fcf9e772b5299
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "bright/version" Gem::Specification.new do |spec| spec.name = "bright" spec.version = Bright::VERSION spec.authors = ["Arux Software"] spec.email = ["hello@arux.software"] spec.summary = "Framework and tools for dealing with Student Information Systems" spec.description = "Bright is a simple Student Information System API abstraction library used in and sponsored by Arux Software. It is written by Stephen Heuer, Steven Novotny, and contributors. The aim of the project is to abstract as many parts as possible away from the user to offer a consistent interface across all supported Student Information System APIs." spec.homepage = "https://github.com/Arux-Software/Bright" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "httpi", "~> 2.1" spec.add_runtime_dependency "json", ">= 0" spec.add_runtime_dependency "oauth", ">= 0.5.4" spec.add_runtime_dependency "parallel", "~> 1.2" spec.add_development_dependency "bundler", ">= 2.2.10" spec.add_development_dependency "rake", "~> 12.3.3" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bright-2.1 | bright.gemspec |
bright-2.0 | bright.gemspec |