modify all gem structure to add tests and binary files
Showing
.travis.yml
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
# Specify your gem's dependencies in mark.gemspec | ||
gemspec |
LICENSE
deleted
100644 → 0
Rakefile
0 → 100644
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
_lib/dspace/version.rb
0 → 100644
bin/console
0 → 100755
bin/setup
0 → 100755
credentials
deleted
100644 → 0
Gem::Specification.new do |s| | ||
s.name = 'dspace_rest_client' | ||
s.version = '2.0.0' | ||
s.date = '2015-05-22' | ||
s.summary = "DSpace REST API Client for Ruby!" | ||
s.description = "DSpace REST-API Client for Ruby! Implements all DSpace REST-API endpoints requests." | ||
s.authors = ["Mauricio Giacomini Girardello", "Bruno N. Zanette", "Mateus Rambo Strey"] | ||
s.email = 'c3sl@c3sl.ufpr.br' | ||
s.files = `git ls-files -z`.split("\0") | ||
s.test_files = `git ls-files -z test/`.split("\0") | ||
s.homepage = 'https://gitlab.c3sl.ufpr.br/c3sl/dspace-rest-client' | ||
s.license = 'GNU General Public License' | ||
# coding: utf-8 | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'dspace/version' | ||
Gem::Specification.new do |spec| | ||
spec.date = '2015-11-23' | ||
spec.name = "dspace_rest_client" | ||
spec.version = Dspace::VERSION | ||
spec.authors = ["Mauricio Giacomini Girardello", "Lucas Ernesto Kindinger", "Bruno N. Zanette", "Mateus Rambo Strey"] | ||
spec.email = ["mauriciogiacomini4@gmail.com", "kindingerlek@hotmail.com"] | ||
spec.summary = 'DSpace REST API Client for Ruby' | ||
spec.description = 'DSpace REST-API Client for Ruby! Implements all DSpace REST-API endpoints requests.' | ||
spec.homepage = 'https://gitlab.c3sl.ufpr.br/c3sl/dspace-rest-client' | ||
spec.license = 'GNU - General Public License' | ||
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or | ||
# delete this section to allow pushing this gem to any host. | ||
if spec.respond_to?(:metadata) | ||
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" | ||
else | ||
raise "RubyGems 2.0 or newer is required to protect against public gem pushes." | ||
end | ||
spec.test_files = `git ls-files -z test/`.split("\0") | ||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
spec.add_development_dependency "bundler", "~> 1.10" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "minitest" | ||
end |
example-of-use.rb
deleted
100644 → 0
install.sh
deleted
100755 → 0
lib/dspace.rb
0 → 100644
test/dspace_test.rb
0 → 100644
Please register or sign in to comment