scaffold de la libreria
parents
Showing
CHANGELOG.md
0 → 100644
CODEOWNERS
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
Dockerfile
0 → 100644
Gemfile
0 → 100644
| # frozen_string_literal: true | |||
| source 'https://rubygems.org' | |||
| git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | |||
| ## Specify your gem's dependencies in zoholib.gemspec | |||
| gemspec | |||
| gem 'httparty','~> 0.18.0' | |||
| gem 'http','~> 4.4.0' | |||
| gem 'logger','~> 1.4.2' | |||
| gem 'savon','~> 2.12.0' | |||
| gem 'sib-api-v3-sdk','~> 5.3.0' | |||
| gem 'launchy','~> 2.5.0' | |||
| \ No newline at end of file |
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
bin/console
0 → 100755
bin/setup
0 → 100755
google-wedoops.gemspec
0 → 100644
| # frozen_string_literal: true | |||
| lib = File.expand_path('lib', __dir__) | |||
| $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |||
| require 'google-wedoops/version' | |||
| Gem::Specification.new do |spec| | |||
| spec.name = 'google-wedoops' | |||
| spec.version = Wedoops::Google::VERSION | |||
| spec.platform = Gem::Platform::RUBY | |||
| spec.date = '2020-04-29' | |||
| spec.authors = ['Jose Ernesto Suarez'] | |||
| spec.email = 'ernesto@wedoops.io' | |||
| spec.summary = 'Google consumer Library' | |||
| spec.description = 'A library for interact with Google' | |||
| spec.homepage = 'http://www.wedoops.io' | |||
| spec.license = 'MIT' | |||
| # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | |||
| # to allow pushing to a single host or delete this section to allow pushing to any host. | |||
| if spec.respond_to?(:metadata) | |||
| spec.metadata['allowed_push_host'] = "https://gitlab.dev.wedoops.io" | |||
| else | |||
| raise 'RubyGems 2.0 or newer is required to protect against ' \ | |||
| 'public gem pushes.' | |||
| end | |||
| #pec.files = Dir['lib/**/*.rb'] | |||
| spec.files = `git ls-files`.split("\n") | |||
| spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | |||
| spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | |||
| spec.require_paths = ["lib"] | |||
| spec.add_dependency 'http','~> 4.4.0' | |||
| spec.add_dependency 'logger','~> 1.4.2' | |||
| spec.add_development_dependency 'bundler', '~> 1.15' | |||
| spec.add_development_dependency 'rake', '~> 13.0.1' | |||
| spec.add_development_dependency 'rspec', '~> 3.0' | |||
| end |
lib/.DS_Store
0 → 100644
File added
lib/google-wedoops.rb
0 → 100644
spec/google-wedoops_spec.rb
0 → 100644
spec/spec_helper.rb
0 → 100644
Please register or sign in to comment