Add rasem gem for SVG generation

This commit is contained in:
Glenn Y. Rolland 2018-10-11 10:57:29 +03:00
parent 651e730a8a
commit 9943ce0632
3 changed files with 40 additions and 0 deletions

View File

@ -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"

View File

@ -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

View File

@ -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'