Sha256: 52b4a95dee881df68cc9a43a7aad5c70ce001e7728303cfc2d27de17bd95a54d
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
source 'https://rubygems.org' # Specify your gem's dependencies in senec.gemspec gemspec # Rake is a Make-like program implemented in Ruby (https://github.com/ruby/rake) gem 'rake' # rspec-3.12.0 (http://github.com/rspec) gem 'rspec' # Automatic Ruby code style checking tool. (https://github.com/rubocop/rubocop) gem 'rubocop' # Automatic performance checking tool for Ruby code. (https://github.com/rubocop/rubocop-performance) gem 'rubocop-performance' # Code style checking for RSpec files (https://github.com/rubocop/rubocop-rspec) gem 'rubocop-rspec' # A RuboCop plugin for Rake (https://github.com/rubocop/rubocop-rake) gem 'rubocop-rake' # Thread-safety checks via static analysis (https://github.com/rubocop/rubocop-thread_safety) gem 'rubocop-thread_safety', require: false # Loads environment variables from `.env`. (https://github.com/bkeepers/dotenv) gem 'dotenv' # Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests. (https://benoittgt.github.io/vcr) gem 'vcr' # Code coverage for Ruby (https://github.com/simplecov-ruby/simplecov) gem 'simplecov' # Library for stubbing HTTP requests in Ruby. (https://github.com/bblimke/webmock) gem 'webmock'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
senec-0.14.0 | Gemfile |