File tree Expand file tree Collapse file tree 3 files changed +28
-1
lines changed
Expand file tree Collapse file tree 3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 55gem 'rake'
66gem 'pry'
77gem 'test-unit'
8- gem 'webmock' , require : false
8+ gem 'webmock' , require : false
9+ # Add these lines to your Gemfile
10+ gem 'rails'
11+ gem 'activesupport'
Original file line number Diff line number Diff line change 1717GEM
1818 remote: https://rubygems.org/
1919 specs:
20+ actionmailer (0.6.1 )
21+ actionpack (>= 0.9.5 )
22+ actionpack (1.4.0 )
23+ activemodel (7.0.8.6 )
24+ activesupport (= 7.0.8.6 )
25+ activerecord (7.0.8.6 )
26+ activemodel (= 7.0.8.6 )
27+ activesupport (= 7.0.8.6 )
2028 activesupport (7.0.8.6 )
2129 concurrent-ruby (~> 1.0 , >= 1.0.2 )
2230 i18n (>= 1.6 , < 2 )
5967 method_source (~> 1.0 )
6068 public_suffix (5.1.1 )
6169 rack (3.1.8 )
70+ rails (0.9.5 )
71+ actionmailer (>= 0.6.1 )
72+ actionpack (>= 1.4.0 )
73+ activerecord (>= 1.6.0 )
74+ rake (>= 0.4.15 )
6275 rake (13.2.1 )
6376 request_store (1.7.0 )
6477 rack (>= 1.4 )
@@ -81,8 +94,10 @@ PLATFORMS
8194 x86_64-linux
8295
8396DEPENDENCIES
97+ activesupport
8498 ontologies_api_client !
8599 pry
100+ rails
86101 rake
87102 test-unit
88103 webmock
Original file line number Diff line number Diff line change 11require 'test-unit'
2+ require 'active_support'
3+ require 'active_support/cache'
24require_relative '../lib/ontologies_api_client'
35require_relative '../config/config'
46require 'webmock'
57
68WebMock . allow_net_connect!
9+
10+ module Rails
11+ def self . cache
12+ @cache ||= ActiveSupport ::Cache ::MemoryStore . new
13+ end
14+ end
15+
716module LinkedData
817 module Client
918 class TestCase < Test ::Unit ::TestCase
You can’t perform that action at this time.
0 commit comments