Add rasem gem for SVG generation
This commit is contained in:
parent
651e730a8a
commit
9943ce0632
3 changed files with 40 additions and 0 deletions
5
Gemfile
5
Gemfile
|
@ -2,3 +2,8 @@
|
||||||
|
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Added at 2018-09-21 14:37:23 +0200 by warbrain:
|
||||||
|
gem "rasem", "~> 0.7.1"
|
||||||
|
|
33
Gemfile.lock
33
Gemfile.lock
|
@ -4,7 +4,9 @@ PATH
|
||||||
webgalien (0.1.0)
|
webgalien (0.1.0)
|
||||||
celluloid (~> 0.17.3)
|
celluloid (~> 0.17.3)
|
||||||
colorize (~> 0.8.1)
|
colorize (~> 0.8.1)
|
||||||
|
mechanize (~> 2.7)
|
||||||
selenium-webdriver (~> 3.14)
|
selenium-webdriver (~> 3.14)
|
||||||
|
table_print (~> 1.5)
|
||||||
thor (~> 0.20.0)
|
thor (~> 0.20.0)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
@ -30,17 +32,47 @@ GEM
|
||||||
childprocess (0.9.0)
|
childprocess (0.9.0)
|
||||||
ffi (~> 1.0, >= 1.0.11)
|
ffi (~> 1.0, >= 1.0.11)
|
||||||
colorize (0.8.1)
|
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)
|
ffi (1.9.25)
|
||||||
hitimes (1.3.0)
|
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)
|
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)
|
rake (12.3.1)
|
||||||
|
rasem (0.7.1)
|
||||||
rubyzip (1.2.2)
|
rubyzip (1.2.2)
|
||||||
selenium-webdriver (3.14.0)
|
selenium-webdriver (3.14.0)
|
||||||
childprocess (~> 0.5)
|
childprocess (~> 0.5)
|
||||||
rubyzip (~> 1.2)
|
rubyzip (~> 1.2)
|
||||||
|
table_print (1.5.6)
|
||||||
thor (0.20.0)
|
thor (0.20.0)
|
||||||
timers (4.1.2)
|
timers (4.1.2)
|
||||||
hitimes
|
hitimes
|
||||||
|
unf (0.1.4)
|
||||||
|
unf_ext
|
||||||
|
unf_ext (0.0.7.5)
|
||||||
|
webrobots (0.1.2)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
@ -49,6 +81,7 @@ DEPENDENCIES
|
||||||
bundler
|
bundler
|
||||||
minitest
|
minitest
|
||||||
rake
|
rake
|
||||||
|
rasem (~> 0.7.1)
|
||||||
webgalien!
|
webgalien!
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
|
|
|
@ -18,6 +18,8 @@ Gem::Specification.new do |spec|
|
||||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ["lib"]
|
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 "selenium-webdriver", "~> 3.14"
|
||||||
spec.add_runtime_dependency 'colorize', '~> 0.8.1'
|
spec.add_runtime_dependency 'colorize', '~> 0.8.1'
|
||||||
spec.add_runtime_dependency 'celluloid', '~> 0.17.3'
|
spec.add_runtime_dependency 'celluloid', '~> 0.17.3'
|
||||||
|
|
Loading…
Reference in a new issue