diff options
| author | mo khan <mo.khan@gmail.com> | 2020-07-06 11:03:35 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-07-10 08:53:37 -0600 |
| commit | 36cdb0040abda394264455a1fdf3d6782af95ceb (patch) | |
| tree | 54093c956c0f4dcf4c2ad352847017aee9a88edc /spec/fixtures/ruby | |
| parent | c7385965b4166fb6ab2db3387c67cd54aef1b8df (diff) | |
Isolate license_management ruby from project
* Target ruby version 2.7.1
* Add spec to fetch gems from a custom source
* Add proxy to rubygems.org config
* Specify default env vars to support offline environment
* Cleanup custom certificates after spec
* Inline docker-test script
* Do not install license_finder with each installed ruby
* Increase gem log verbosity and include backtrace
* Extract test fixtures for the different ruby scenarios
* Find *.gemspec files in gems dir
* Use RUBYLIB to hijack src path
* Run scan from project path dir
Diffstat (limited to 'spec/fixtures/ruby')
| -rw-r--r-- | spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile | 5 | ||||
| -rw-r--r-- | spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile.lock | 47 |
2 files changed, 52 insertions, 0 deletions
diff --git a/spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile b/spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile new file mode 100644 index 0000000..d26dbc9 --- /dev/null +++ b/spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile @@ -0,0 +1,5 @@ +source 'https://rubygems.org' + +ruby '2.4.9' + +gem 'saml-kit' diff --git a/spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile.lock b/spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile.lock new file mode 100644 index 0000000..ccb0aef --- /dev/null +++ b/spec/fixtures/ruby/bundler/ruby-2.4.9/Gemfile.lock @@ -0,0 +1,47 @@ +GEM + remote: https://rubygems.org/ + specs: + activemodel (5.2.4.3) + activesupport (= 5.2.4.3) + activesupport (5.2.4.3) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + builder (3.2.4) + concurrent-ruby (1.1.6) + i18n (1.8.3) + concurrent-ruby (~> 1.0) + mini_portile2 (2.4.0) + minitest (5.14.1) + net-hippie (0.3.2) + nokogiri (1.10.10) + mini_portile2 (~> 2.4.0) + saml-kit (1.1.0) + activemodel (>= 4.2.0) + net-hippie (~> 0.1) + xml-kit (>= 0.3.0, < 1.0.0) + thread_safe (0.3.6) + tilt (2.0.10) + tzinfo (1.2.7) + thread_safe (~> 0.1) + xml-kit (0.4.0) + activemodel (>= 4.2.0) + builder (~> 3.2) + nokogiri (~> 1.10) + tilt (>= 1.4.1) + xmldsig (~> 0.6) + xmldsig (0.6.6) + nokogiri (>= 1.6.8, < 2.0.0) + +PLATFORMS + ruby + +DEPENDENCIES + saml-kit + +RUBY VERSION + ruby 2.4.9p362 + +BUNDLED WITH + 2.1.4 |
