-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathg.gemspec
29 lines (25 loc) · 968 Bytes
/
g.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'g/version'
Gem::Specification.new do |spec|
spec.name = "theguardian-console"
spec.version = G::VERSION
spec.authors = ["Mohamed Magdy"]
spec.email = ["[email protected]"]
spec.description = "TheGuardian is in the console ... Geek"
spec.summary = "g is for TheGuardian. The idea inspired from t for Twitter"
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = ["g"]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
# Dependencies
spec.add_dependency("theguardian")
spec.add_dependency("table_print")
spec.add_dependency("terminal-table")
# Dependencies
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
end