-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (33 loc) · 702 Bytes
/
Gemfile
File metadata and controls
44 lines (33 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
source "https://rubygems.org"
# Specify your gem's dependencies in interscript.gemspec
gemspec
gem "rake", "~> 12.0"
gem "rspec", "~> 3.0"
gem "interscript-maps", path: "../maps"
unless Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.7")
group :secryst do
if File.exist? "../../secryst"
gem "secryst", path: "../../secryst"
else
gem "secryst"
end
end
end
gem 'regexp_parser'
unless ENV["SKIP_JS"]
group :jsexec do
gem 'mini_racer'
end
end
unless ENV["SKIP_PYTHON"]
group :pyexec do
gem 'pycall'
end
end
group :rababa do
gem 'rababa', "~> 0.1.1"
end
gem 'pry'
gem 'iso-639-data'
gem 'iso-15924'
gem 'simplecov', require: false, group: :test