-
Notifications
You must be signed in to change notification settings - Fork 0
/
utf8mb4rails.gemspec
32 lines (26 loc) · 1.21 KB
/
utf8mb4rails.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'utf8mb4rails/version'
Gem::Specification.new do |spec|
spec.name = 'utf8mb4rails'
spec.version = Utf8mb4rails::VERSION
spec.authors = ['Jose Fernandez (magec)']
spec.email = ['[email protected]']
spec.summary = 'Adds a task to migrate mysql utf8 tables to utf8mb4 (emojis)'
spec.description = 'Poetry is so XIX century, nowadays we express ourselves using emojis.
This gem adds a task to migrate mysql utf8 tables to utf8mb4 in rails projects.'
spec.homepage = 'https://github.com/magec/utf8mb4rails'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'departure', '~> 6.1'
spec.add_runtime_dependency 'mysql2', '~> 0.4.0'
spec.add_development_dependency 'bundler', '~> 1.12'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
end