Sha256: 55055f4dbdd6f812e14ffe209f8b5188644597edce56d247cb1ed2e16d9872b3
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'github_contributions_api/version' Gem::Specification.new do |spec| spec.name = "github_contributions_api" spec.version = GithubContributionsApi::VERSION spec.authors = ["MJ Rossetti"] spec.email = ["datacreativellc@gmail.com"] spec.summary = %q{A ruby interface to the GitHub Contributions Archive API (https://githubcontributions.io). Get information about GitHub users and events, including all repositories a user has contributed to. No authentication required.} spec.description = %q{A ruby interface to the GitHub Contributions Archive API (https://githubcontributions.io). Get information about GitHub users and events, including all repositories a user has contributed to. No authentication required.} spec.homepage = "https://github.com/data-creative/github-contributions-api-ruby" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "pry", "~> 0.10" spec.add_development_dependency "yard" spec.add_development_dependency "redcarpet" spec.add_development_dependency "github-markup" spec.add_dependency "httparty", "~> 0.13" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github_contributions_api-1.0.0 | github_contributions_api.gemspec |