forked from PenguinParadigm/tcramer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcramer.gemspec
42 lines (35 loc) · 1.19 KB
/
tcramer.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
39
40
41
42
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'tcramer/version'
# rubocop:disable Metrics/BlockLength
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'tcramer'
s.version = Tcramer::VERSION
s.authors = ['Michael J. Giarlo']
s.email = ['[email protected]']
s.homepage = 'http://cramer.space/'
s.summary = 'tcramer writes rake tasks'
s.description = 'tcramer writes rake tasks'
s.license = 'MIT'
s.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
s.add_dependency 'rails', '>= 4.2'
s.add_dependency 'zalgo'
s.add_development_dependency 'engine_cart'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'sqlite3'
s.post_install_message = "
tcramer is in the house!!!
🤠
🐧🐧🐧
🐧 🐧 🐧
👇🏽 🐧🐧 👇🏽
🐧 🐧
🐧 🐧
👢 👢
howdy. I'm the sheriff of rake tasks.
"
end
# rubocop:enable Metrics/BlockLength