Sha256: 58ffdc6f5b613e2b960fde04ab772f7be1e50b8f41a55faed8a35275ad51ee2f
Contents?: true
Size: 968 Bytes
Versions: 3
Compression:
Stored size: 968 Bytes
Contents
source "https://rubygems.org" # Add dependencies required to use your gem here. # Example: # gem "activesupport", ">= 2.3.5" gem "after_commit_action", "~> 1.0" gem "activerecord", ">= 3.0.0" gem "activesupport", ">= 3.0.0" # Add dependencies to develop your gem here. # Include everything needed to run rake, tests, features, etc. group :development, :test do gem "rake" rails = case ENV["RAILS_VERSION"] when "master" { github: "rails/rails" } when nil, "" ">= 3.1.0" else ENV["RAILS_VERSION"] end gem "rails", rails gem "rspec", "~> 3.0" gem "awesome_print" gem "timecop" # to test the integration gem "paranoia" if RUBY_VERSION < "2.3.0" gem "paper_trail", "< 9.0.0" else gem "paper_trail" end end group :development do gem "rdoc", "~> 3.12" gem "bundler", ">= 1.2.0" gem "jeweler", "~> 2.1" end group :test do gem "sqlite3" gem "rspec-extra-formatters" gem "database_cleaner", ">= 1.1.1" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
counter_culture-1.11.0 | Gemfile |
counter_culture-1.10.0 | Gemfile |
counter_culture-1.9.2 | Gemfile |