-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (30 loc) · 943 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
43
44
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in newsify.gemspec.
gemspec
gem 'kaminari'
# summarization
gem 'aylien_text_api'
# named entity recognition
gem 'google-cloud-language'
# paragraphs to sentences, look at NLP and Sentence Boundary Disambiguation (for better solutions)
gem 'tactful_tokenizer'
# text similarity (and for classification)
gem 'narray'
gem 'tf-idf-similarity'
#gem 'stopwords'
#gem 'stemmify'
gem 'impressionist', git: 'https://github.com/scottcmerritt/impressionist.git'
# my gem for sorting with labels
gem 'custom_sort'
gem 'paper_trail' # for logging model history
gem 'diffy'
gem 'wikidata'
gem 'wikipedia-client'
# community gems
#gem 'has_friendship', git: 'https://github.com/sungwoncho/has_friendship.git'
group :development do
gem 'sqlite3'
end
# To use a debugger
# gem 'byebug', group: [:development, :test]