forked from rochefort/git-trend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-trend.gemspec
More file actions
51 lines (41 loc) · 1.73 KB
/
Copy pathgit-trend.gemspec
File metadata and controls
51 lines (41 loc) · 1.73 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'git_trend/version'
def install_message
s = ''
s << "\xf0\x9f\x8d\xba " if or_over_mac_os_lion?
s << 'Thanks for installing!'
end
def or_over_mac_os_lion?
return false unless RUBY_PLATFORM =~ /darwin/
macos_full_version = `/usr/bin/sw_vers -productVersion`.chomp
macos_version = macos_full_version[/10\.\d+/]
macos_version >= '10.7' # 10.7 is lion
end
Gem::Specification.new do |spec|
spec.name = 'git-trend'
spec.version = GitTrend::VERSION
spec.authors = ['rochefort']
spec.email = ['terasawan@gmail.com']
spec.summary = 'CLI-Based tool that show Trending repository on github'
spec.description = spec.summary
spec.homepage = 'https://github.com/rochefort/git-trend'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.post_install_message = install_message
spec.add_dependency 'thor', '~> 0.19.1'
spec.add_dependency 'mechanize', '~> 2.7.3'
spec.add_dependency 'addressable', '~> 2.3.6'
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.2.0'
spec.add_development_dependency 'rspec-its', '~> 1.2.0'
spec.add_development_dependency 'simplecov', '~> 0.9.0'
spec.add_development_dependency 'safe_yaml', '~> 1.0.4' # for Ruby2.2.0
spec.add_development_dependency 'webmock', '~> 1.20.4'
spec.add_development_dependency 'coveralls'
end