From 9943ce0632182e9d1d7458b0cf5750df5f6272f5 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Thu, 11 Oct 2018 10:57:29 +0300 Subject: [PATCH] Add rasem gem for SVG generation --- Gemfile | 5 +++++ Gemfile.lock | 33 +++++++++++++++++++++++++++++++++ webgalien.gemspec | 2 ++ 3 files changed, 40 insertions(+) diff --git a/Gemfile b/Gemfile index bb94df8..923ad03 100644 --- a/Gemfile +++ b/Gemfile @@ -2,3 +2,8 @@ source "https://rubygems.org" gemspec + + + +# Added at 2018-09-21 14:37:23 +0200 by warbrain: +gem "rasem", "~> 0.7.1" diff --git a/Gemfile.lock b/Gemfile.lock index 0bf6753..8f5867b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,7 +4,9 @@ PATH webgalien (0.1.0) celluloid (~> 0.17.3) colorize (~> 0.8.1) + mechanize (~> 2.7) selenium-webdriver (~> 3.14) + table_print (~> 1.5) thor (~> 0.20.0) GEM @@ -30,17 +32,47 @@ GEM childprocess (0.9.0) ffi (~> 1.0, >= 1.0.11) colorize (0.8.1) + connection_pool (2.2.2) + domain_name (0.5.20180417) + unf (>= 0.0.5, < 1.0.0) ffi (1.9.25) hitimes (1.3.0) + http-cookie (1.0.3) + domain_name (~> 0.5) + mechanize (2.7.6) + domain_name (~> 0.5, >= 0.5.1) + http-cookie (~> 1.0) + mime-types (>= 1.17.2) + net-http-digest_auth (~> 1.1, >= 1.1.1) + net-http-persistent (>= 2.5.2) + nokogiri (~> 1.6) + ntlm-http (~> 0.1, >= 0.1.1) + webrobots (>= 0.0.9, < 0.2) + mime-types (3.2.2) + mime-types-data (~> 3.2015) + mime-types-data (3.2018.0812) + mini_portile2 (2.3.0) minitest (5.11.3) + net-http-digest_auth (1.4.1) + net-http-persistent (3.0.0) + connection_pool (~> 2.2) + nokogiri (1.8.4) + mini_portile2 (~> 2.3.0) + ntlm-http (0.1.1) rake (12.3.1) + rasem (0.7.1) rubyzip (1.2.2) selenium-webdriver (3.14.0) childprocess (~> 0.5) rubyzip (~> 1.2) + table_print (1.5.6) thor (0.20.0) timers (4.1.2) hitimes + unf (0.1.4) + unf_ext + unf_ext (0.0.7.5) + webrobots (0.1.2) PLATFORMS ruby @@ -49,6 +81,7 @@ DEPENDENCIES bundler minitest rake + rasem (~> 0.7.1) webgalien! BUNDLED WITH diff --git a/webgalien.gemspec b/webgalien.gemspec index 8798fab..a3b6c02 100644 --- a/webgalien.gemspec +++ b/webgalien.gemspec @@ -18,6 +18,8 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] + spec.add_runtime_dependency "table_print", "~> 1.5" + spec.add_runtime_dependency "mechanize", "~> 2.7" spec.add_runtime_dependency "selenium-webdriver", "~> 3.14" spec.add_runtime_dependency 'colorize', '~> 0.8.1' spec.add_runtime_dependency 'celluloid', '~> 0.17.3'