forked from trek/lonely_coder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlonely_coder.gemspec
34 lines (25 loc) · 920 Bytes
/
lonely_coder.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "lonely_coder"
s.version = '0.1.5.1'
s.platform = Gem::Platform::RUBY
s.authors = ["Trek Glowacki"]
s.email = ["trek.glowacki@gmail.com"]
s.homepage = "http://github.com/trek/lonely_coder"
s.summary = %q{A gem for interacting with OKCupid as if it had an API}
s.description = %q{A gem for interacting with OKCupid as if it had an API.}
s.add_dependency 'mechanize', '= 2.0.1'
s.add_dependency 'activesupport', '>= 3.2.1'
s.post_install_message = %q{
,d88b.d88b,
88888888888
`Y8888888Y'
`Y888Y'
`Y'
Good luck out there.
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end