File: Gemfile

package info (click to toggle)
mikutter 5.0.4%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,700 kB
  • sloc: ruby: 21,307; sh: 181; makefile: 19
file content (38 lines) | stat: -rw-r--r-- 948 bytes parent folder | download
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
alias __source_distinct__ source
def source(url)
  @loaded ||= {}
  unless @loaded[url]
    @loaded[url] = true
    __source_distinct__(url) end end

source 'https://rubygems.org'

ruby '>= 2.7.0'

group :default do
  gem 'addressable','>= 2.8.0', '< 2.9'
  gem 'delayer','>= 1.2.1', '< 2.0'
  gem 'delayer-deferred','>= 2.2.0', '< 3.0'
  gem 'diva','>= 2.0.1', '< 3.0'
  gem 'memoist','>= 0.16.2', '< 0.17'
  gem 'oauth','>= 0.5.8'
  gem 'pluggaloid','>= 1.7.0', '< 2.0'
  gem 'typed-array','>= 0.1.2', '< 0.2'
end

group :test do
  gem 'test-unit','>= 3.5.2', '< 4.0'
  gem 'rake','>= 13.0.6'
  gem 'mocha','>= 1.13.0'
  gem 'ruby-prof','>= 1.4.3'
end


group :plugin do
  Dir.glob(File.expand_path(File.join(__dir__, 'plugin/*/Gemfile'))){ |path|
    eval File.open(path).read
  }
  Dir.glob(File.join(File.expand_path(ENV['MIKUTTER_CONFROOT'] || '~/.mikutter'), 'plugin/*/Gemfile')){ |path|
    eval File.open(path).read, binding, path
  }
end