tilde.news/Gemfile

44 lines
636 B
Ruby
Raw Normal View History

2012-06-30 21:37:09 +00:00
source "https://rubygems.org"
2017-08-22 14:48:16 +00:00
gem "json"
gem "rails", "~> 5.1"
gem "unicorn"
gem "mysql2", "~> 0.5.0"
# uncomment to use PostgreSQL
2014-01-09 05:01:45 +00:00
# gem "pg"
gem 'scenic'
gem 'scenic-mysql'
gem "uglifier", ">= 1.3.0"
gem "jquery-rails", "~> 4.3"
gem "dynamic_form"
gem "exception_notification"
gem "bcrypt", "~> 3.1.2"
gem "rotp"
gem "rqrcode"
2012-06-30 21:37:09 +00:00
gem "nokogiri", ">= 1.7.2"
2012-06-30 23:42:53 +00:00
gem "htmlentities"
2017-04-12 12:53:51 +00:00
gem "commonmarker", "~> 0.14"
2012-07-02 01:09:22 +00:00
gem "activerecord-typedstore"
# for twitter-posting bot
2013-07-04 03:40:37 +00:00
gem "oauth"
# for parsing incoming mail
2013-06-25 18:58:52 +00:00
gem "mail"
2012-06-30 21:42:07 +00:00
group :test, :development do
Update dependencies * Bump rspec-rails from 3.6.0 to 3.7.2 Bumps [rspec-rails](https://github.com/rspec/rspec-rails) from 3.6.0 to 3.7.2. - [Changelog](https://github.com/rspec/rspec-rails/blob/master/Changelog.md) - [Commits](https://github.com/rspec/rspec-rails/compare/v3.6.0...v3.7.2) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump activerecord-typedstore from 1.1.1 to 1.1.3 Bumps [activerecord-typedstore](https://github.com/byroot/activerecord-typedstore) from 1.1.1 to 1.1.3. - [Commits](https://github.com/byroot/activerecord-typedstore/compare/v1.1.1...v1.1.3) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump nokogiri from 1.8.1 to 1.8.2 Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.8.1 to 1.8.2. - [Changelog](https://github.com/sparklemotion/nokogiri/blob/master/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.8.1...v1.8.2) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump scenic from 1.4.0 to 1.4.1 Bumps [scenic](https://github.com/thoughtbot/scenic) from 1.4.0 to 1.4.1. - [Changelog](https://github.com/thoughtbot/scenic/blob/master/NEWS.md) - [Commits](https://github.com/thoughtbot/scenic/compare/v1.4.0...v1.4.1) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump exception_notification from 4.2.1 to 4.2.2 Bumps [exception_notification](https://github.com/smartinez87/exception_notification) from 4.2.1 to 4.2.2. - [Changelog](https://github.com/smartinez87/exception_notification/blob/master/CHANGELOG.rdoc) - [Commits](https://github.com/smartinez87/exception_notification/compare/v4.2.1...v4.2.2) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump oauth from 0.5.3 to 0.5.4 Bumps oauth from 0.5.3 to 0.5.4. Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump uglifier from 3.2.0 to 4.1.7 Bumps [uglifier](https://github.com/lautis/uglifier) from 3.2.0 to 4.1.7. - [Changelog](https://github.com/lautis/uglifier/blob/master/CHANGELOG.md) - [Commits](https://github.com/lautis/uglifier/compare/v3.2.0...v4.1.7) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump rotp from 3.3.0 to 3.3.1 Bumps [rotp](https://github.com/mdp/rotp) from 3.3.0 to 3.3.1. - [Changelog](https://github.com/mdp/rotp/blob/master/CHANGELOG.md) - [Commits](https://github.com/mdp/rotp/commits) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump rails from 5.1.1 to 5.1.5 Bumps [rails](https://github.com/rails/rails) from 5.1.1 to 5.1.5. - [Commits](https://github.com/rails/rails/compare/v5.1.1...v5.1.5) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump faker from 1.7.3 to 1.8.7 Bumps [faker](https://github.com/stympy/faker) from 1.7.3 to 1.8.7. - [Changelog](https://github.com/stympy/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/stympy/faker/compare/v1.7.3...v1.8.7) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump unicorn from 5.3.0 to 5.4.0 Bumps [unicorn](https://bogomips.org/unicorn/) from 5.3.0 to 5.4.0. Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump mysql2 from 0.4.6 to 0.4.10 Bumps [mysql2](https://github.com/brianmario/mysql2) from 0.4.6 to 0.4.10. - [Release notes](https://github.com/brianmario/mysql2/releases) - [Changelog](https://github.com/brianmario/mysql2/blob/master/CHANGELOG.md) - [Commits](https://github.com/brianmario/mysql2/compare/0.4.6...0.4.10) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-03-21 18:43:51 +00:00
gem "rspec-rails", "~> 3.7"
2012-06-30 21:42:07 +00:00
gem "machinist"
gem "sqlite3"
2014-07-07 08:15:28 +00:00
gem "faker"
2012-06-30 21:42:07 +00:00
end