This repository has been archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
140 lines (109 loc) · 3.66 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.2'
# Use feedjira for fetching and parsing RSS feeds
gem 'feedjira'
gem 'omniauth-twitter'
# User Rails Internationalization API
gem 'rails-i18n', '4.0.4'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.18.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'bootstrap-sass', '3.3.5'
gem 'will_paginate', '3.0.7'
gem 'bootstrap-will_paginate', '0.0.10'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', plaltforms: :ruby
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use addresable to extract the domain from a given url
gem 'addressable', '2.3.8'
# Use nokogiri to parse and read articles
gem 'nokogiri', '1.6.6.2'
#gem 'mechanize', '2.7.3'
gem 'pismo', '0.7.4'
gem 'whatlanguage', '~> 1.0.5'
# gem 'etherpad-lite', '~> 0.3.0'
# gem 'google-api-client', '0.9.pre3'
# gem 'googleauth', '~> 0.4.2'
# gem 'signet', '~> 0.6.1'
# gem 'dropbox', '~> 1.3.0'
# gem 'dropbox-sdk'
gem 'stopwords-filter', '~> 0.3.1'
gem 'tf-idf-similarity', '~> 0.1.4'
gem 'narray', '~> 0.6.1.1'
gem 'fast-stemmer', '~> 1.0.2'
gem 'ai4r', '1.13'
#gem 'som'
gem 'rmagick', '~> 2.15.4'
gem 'kmeans', '~> 0.1.1'
# gem 'rsemantic', '~> 0.3.0'
gem 'rack-gsub', '~> 0.1.0'
#gem 'stopwords-filter', '0.3.1'
# gem 'similarity', '0.2.5'
# gem 'rubyzip', '~> 1.1.7'
#gem 'zip', '~> 2.0.2'
#gem 'birch', :github => 'faustoct/birch'
# gem 'schiphol', '~> 0.9.4'
#gem 'treat', '2.1.0'
#gem 'ruby-readability', '~> 0.7.0'
#gem 'fastimage', '~> 1.7.0'
gem 'rack-mini-profiler', require: false
gem 'flamegraph', '~> 0.1.0'
gem 'stackprof', '~> 0.2.7'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
#gem 'ruby-graphviz'
gem 'nyaplot'
gem 'nyaplot-utils'
# Use fake to generate fake data in database
gem 'faker', '1.4.2'
# Use rails-erd to extract erd from schema - db
gem 'rails-erd'
end
group :test do
gem 'cucumber-rails', '1.4.0', :require => false
# gem 'capybara-email', '2.4.0'
gem 'email_spec', '1.6.0'
gem 'action_mailer_cache_delivery', '0.3.7'
gem 'capybara-email', '2.4.0'
gem 'show_me_the_cookies', '3.0.0'
gem 'rspec-rails', '2.11.0'
gem 'database_cleaner', '~> 1.2.0'
gem 'factory_girl_rails', '~> 4.0'
gem 'minitest-reporters', '1.0.5'
gem 'mini_backtrace', '0.1.3'
gem 'guard-minitest', '2.3.1'
gem 'sqlite3', '1.3.10'
gem 'selenium-webdriver', '2.47.1'
# gem 'capybara-screenshot'
gem "codeclimate-test-reporter", require: nil
gem 'fakeweb', '~> 1.3'
end
group :production do
gem 'rails_12factor', '0.0.2'
gem 'puma', '2.11.1'
end