-
Notifications
You must be signed in to change notification settings - Fork 43
/
cassandra_migrations.gemspec
38 lines (33 loc) · 1.62 KB
/
cassandra_migrations.gemspec
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cassandra_migrations/version'
Gem::Specification.new do |s|
s.name = 'cassandra_migrations'
s.version = CassandraMigrations::VERSION
s.date = '2016-06-14'
s.license = 'MIT'
s.summary = 'Cassandra schema management for a multi-environment developer.'
s.description = 'A gem to manage Cassandra database schema for Rails. This gem offers migrations and environment specific databases out-of-the-box for Rails users.'
s.authors = ['Henrique Gubert', 'Brian Sam-Bodden']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/hsgubert/cassandra_migrations'
s.require_path = 'lib'
s.required_rubygems_version = '>= 1.8.0'
# s.files: The files included in the gem.
s.files = Dir['lib/**/*', 'template/**/*']
# s.test_files: Files that are used for testing the gem.
s.test_files = Dir['s/**/*_s.rb']
# s.add_dependency: Production dependencies
s.add_runtime_dependency 'cassandra-driver', '~> 3.0'
s.add_runtime_dependency 'rake', '~> 10'
s.add_runtime_dependency 'rails', '>= 3.2'
s.add_runtime_dependency 'colorize', '~> 0.7.3'
# s.add_development_dependency: Development dependencies
s.add_development_dependency 'rspec', '~> 3.1', '>= 3.1.0'
s.add_development_dependency 'byebug', '~> 8.2'
s.add_development_dependency 'bundler', '~> 1.6'
s.add_development_dependency 'simplecov', '~> 0.9'
s.add_development_dependency 'coveralls', '~> 0.7'
s.add_development_dependency 'appraisal', '~> 1.0'
end