Gem scaffold
Showing
.rspec_status
0 → 100644
.ruby-version
0 → 100644
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 masmovil-smsclient.gemspec | |||
gemspec | |||
gem 'logger','~> 1.4.2' | |||
gem 'savon','~> 2.12.0' | |||
\ No newline at end of file |
Gemfile.lock
0 → 100644
LICENSE.txt
0 → 100644
Rakefile
0 → 100644
TO-DO
0 → 100644
bin/console
0 → 100755
bin/setup
0 → 100755
lib/.DS_Store
0 → 100644
File added
lib/masmovil-smsclient.rb
0 → 100644
masmovil-smsclient.gemspec
0 → 100644
# frozen_string_literal: true | |||
lib = File.expand_path('lib', __dir__) | |||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |||
require 'masmovil-smsclient/version' | |||
Gem::Specification.new do |spec| | |||
spec.name = 'masmovil-smsclient' | |||
spec.version = Wedoops::MasmovilSmsclient::VERSION | |||
spec.platform = Gem::Platform::RUBY | |||
spec.date = '2020-05-20' | |||
spec.authors = ['Jose Ernesto Suarez'] | |||
spec.email = 'ernesto@wedoops.io' | |||
spec.summary = 'MasMovil SMS Library' | |||
spec.description = 'A library for consume the MasMovil SMS APi' | |||
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 | |||
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 'logger','~> 1.4.2' | |||
spec.add_dependency 'savon','~> 2.12.0' | |||
spec.add_development_dependency 'bundler', '~> 1.15' | |||
spec.add_development_dependency 'rake', '~> 13.0.1' | |||
spec.add_development_dependency 'rspec', '~> 3.0' | |||
end |
spec/spec_helper.rb
0 → 100644
spec/zoholib_spec.rb
0 → 100644
Please register or sign in to comment