-
Notifications
You must be signed in to change notification settings - Fork 42
/
Gemfile
42 lines (29 loc) · 1006 Bytes
/
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
source 'https://rubygems.org'
ruby '2.4.1'
# The Cocoa library package manager.
gem 'cocoapods'
# Label labels the gems in your Gemfile
gem 'label'
# A CocoaPods plugin to remove and de-intergrate CocoaPods from your project.
gem 'cocoapods-deintegrate'
# A command-line tool that reorganizes your Xcode project folder to match your Xcode
# groups
gem 'synx'
# Script, that automatically generate changelog from your tags, issues, labels and pull
# requests.
gem 'github_changelog_generator'
# xcodebuild formatter done right
gem 'xcpretty'
# Automate your PR etiquette.
gem 'danger', '~> 0.8.5'
# A Danger plugin for linting Swift with SwiftLint.
gem 'danger-swiftlint', :git => 'https://github.com/paweldudek/danger-swiftlint', :branch => 'master'
# A toolkit of support libraries and Ruby core extensions extracted from the Rails
# framework.
gem 'activesupport'
# Rake is a Make-like program implemented in Ruby
gem 'rake'
# Travis CI client
gem 'travis'
# Ruby FFI
gem "ffi", ">= 1.9.24"