This repository has been archived by the owner on Jan 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (48 loc) · 1.5 KB
/
Gemfile
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
source 'https://rubygems.org'
# Specify your gem's dependencies in bukovina.gemspec
gemspec
gem 'rdoba', :git => 'https://github.com/3aHyga/rdoba.git'
#gem 'rdoba', :path => '/usr/local/home/majioa/git/rdoba'
#gem 'petrovich', :path => '/usr/local/home/majioa/git/petrovich-ruby/'
#gem 'flag_shih_tzu'
gem 'i18n'
gem 'validate_url'
gem 'activerecord', '~> 5.1.1'
#gem 'activerecord', github: 'rails/rails', branch: 'v5.1.0.rc1'
group :development do
gem 'mechanize'
gem 'hashie'
gem 'petrovich'
gem 'cucumber'
gem 'spork'
gem 'shoulda-matchers', github: 'majioa/shoulda-matchers', branch: 'allow_to_use_the_matchers_with_just_rspec_expectations_gem'
gem 'rspec-expectations'
gem 'factory_girl'
gem 'faker'
gem 'ffaker'
gem 'database_cleaner'
gem 'pg'
# To fix CVE-2015-7499 - HEAP-BASED BUFFER OVERFLOW VULNERABILITY IN LIBXML2 and others in LIBXML2
gem 'nokogiri', '~> 1.6.7.2' ; end
platforms :rbx do
gem 'psych' # YAML for rbx
gem 'rubysl', '~> 2.0' # stl for rbx
end
require 'rubygems/package'
class Gem::Package::TarWriter
def split_name name
if name.bytesize <= 100 then
prefix = ""
else
parts = name.split(/\//)
newname = parts.pop
nxt = ""
loop do
nxt = parts.pop
break if newname.bytesize + 1 + nxt.bytesize > 100
newname = nxt + "/" + newname
end
prefix = (parts + [nxt]).join "/"
name = newname
end
return name, prefix ; end ; end