-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathhuman_power.gemspec
More file actions
24 lines (21 loc) · 867 Bytes
/
human_power.gemspec
File metadata and controls
24 lines (21 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'human_power/version'
Gem::Specification.new do |s|
s.name = "human_power"
s.version = HumanPower::VERSION
s.authors = ["Lasse Bunk"]
s.email = ["[email protected]"]
s.description = %q{Easy generation of robots.txt.}
s.summary = %q{Easy generation of robots.txt. Force the robots into submission!}
s.homepage = "https://github.com/lassebunk/human_power"
s.license = "MIT"
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^test/})
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.3"
s.add_development_dependency "rake"
s.add_development_dependency "rails", "~> 4.0.1"
s.add_development_dependency "sqlite3"
end