-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshitty.gemspec
More file actions
34 lines (31 loc) · 1.09 KB
/
shitty.gemspec
File metadata and controls
34 lines (31 loc) · 1.09 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "shitty/version"
Gem::Specification.new do |s|
s.name = "shitty"
s.version = Shitty::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["asur"]
s.email = ["arusarka@gmail.com"]
s.homepage = ""
s.summary = %q{This gem is written in jest when I was on bench and had nothing much to work on. It
is not written with an intention to belittle ruby. I love ruby. But thought why not write something to
put a smile on your face}
s.description = %q{Let's write some shit}
s.add_development_dependency 'rspec'
s.add_development_dependency 'rspec-unit'
s.add_development_dependency 'ZenTest'
s.files = [
'lib/shitty.rb',
'lib/shitty/version.rb',
'lib/shitty/aliases.rb'
]
s.test_files = [
'spec/spec_helper.rb',
'spec/shitty/aliases_spec.rb',
'spec/shitty/version_spec.rb'
]
s.extra_rdoc_files = ['README.rdoc']
# s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end