Sha256: 6fddcfb6b35ff89991186f52514c823a7c9920f219691b730a649353dc8c2e32
Contents?: true
Size: 1.82 KB
Versions: 5
Compression:
Stored size: 1.82 KB
Contents
# frozen_string_literal: true source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } # Specify your gem's dependencies in devise-api.gemspec gemspec # Rake is a Make-like program implemented in Ruby [https://github.com/ruby/rake] gem 'rake', '~> 13.0' # Behaviour Driven Development for Ruby [https://github.com/rspec/rspec-metagem] gem 'rspec', '~> 3.0' # RuboCop is a Ruby code style checking and code formatting tool [https://github.com/rubocop/rubocop] gem 'rubocop', '~> 1.21' # Pretty print Ruby objects with proper indentation and colors [https://github.com/awesome-print/awesome_print] gem 'awesome_print' # Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry] gem 'pry', '~> 0.14.1' # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] gem 'sprockets-rails' # Use sqlite3 as the database for Active Record gem 'sqlite3', '~> 1.4' # Use the Puma web server [https://github.com/puma/puma] gem 'puma', '~> 5.0' # A library for setting up Ruby objects as test data [https://github.com/thoughtbot/factory_bot] gem 'factory_bot', '~> 6.2', '>= 6.2.1' # A library for generating fake data such as names, addresses, and phone numbers [https://github.com/faker-ruby/faker] gem 'faker', '~> 3.1' # Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing [https://github.com/DatabaseCleaner/database_cleaner] gem 'database_cleaner', '~> 2.0', '>= 2.0.1' # RSpec for Rails 5+ [https://github.com/rspec/rspec-rails] gem 'rspec-rails', '~> 6.0', '>= 6.0.1' # RSpec runner and formatters [https://github.com/rspec/rspec-core] gem 'rspec-core' # Common code needed by the other RSpec gems. Not intended for direct use [https://github.com/rspec/rspec-support] gem 'rspec-support'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
devise-api-0.2.0 | Gemfile |
devise-api-0.1.3 | Gemfile |
devise-api-0.1.2 | Gemfile |
devise-api-0.1.1 | Gemfile |
devise-api-0.1.0 | Gemfile |