-
Notifications
You must be signed in to change notification settings - Fork 6
/
station.gemspec
97 lines (91 loc) · 4.86 KB
/
station.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative "lib/nexmo_developer/version"
Gem::Specification.new do |spec|
spec.name = "station"
spec.version = NexmoDeveloper::VERSION
spec.authors = ["Vonage DevRel"]
spec.email = ["[email protected]"]
spec.executables << 'nexmo-developer'
spec.summary = %q{Station provides a documentation platform ready to use with your custom documentation.}
spec.homepage = "https://github.com/Nexmo/station"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Nexmo/station"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|_api|_code|_documentation|_examples|_extend|_modals|_open_api|_tutorials|_tutorials_tabbed_content|_use_cases|_partials|sample_config_files|.repos)/}) }
end
spec.files += Dir.glob('./lib/nexmo_developer/public/**/*', File::FNM_DOTMATCH)
spec.files.reject! { |fn| fn.include? 'lib/nexmo_developer/spec' }
spec.files.reject! { |fn| fn.include? '.github' }
spec.files.reject! { |fn| fn.include? 'lib/nexmo_developer/public/sdk' }
spec.files.reject! { |fn| fn.include? 'lib/nexmo_developer/tmp/cache' }
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency('activeadmin', '~> 2.7')
spec.add_runtime_dependency('rails', '~> 6.1')
spec.add_runtime_dependency('bootsnap', '~> 1.4')
spec.add_runtime_dependency('nexmo-oas-renderer', '2.7.2')
spec.add_runtime_dependency('nexmo_markdown_renderer', '~> 0.9')
spec.add_runtime_dependency('activesupport', '~> 6.0')
spec.add_runtime_dependency('bugsnag', '~> 6.13')
spec.add_runtime_dependency('railties', '~> 6.0')
spec.add_runtime_dependency('devise', '~> 4.7')
spec.add_runtime_dependency('geocoder', '~> 1.6')
spec.add_runtime_dependency('gravatar_image_tag', '~> 1.2')
spec.add_runtime_dependency('greenhouse_io', '~> 2.5')
spec.add_runtime_dependency('recaptcha', '~> 5.3')
spec.add_runtime_dependency('split', '~> 3.4')
spec.add_runtime_dependency('listen', '~> 3.2')
spec.add_runtime_dependency('inherited_resources', '~> 1.11')
spec.add_runtime_dependency('msgpack', '~> 1.3')
spec.add_runtime_dependency('pg', '~> 1.2')
spec.add_runtime_dependency('coffee-rails', '~> 5.0')
spec.add_runtime_dependency('octokit', '~> 4.18')
spec.add_runtime_dependency('icalendar', '~> 2.6')
spec.add_runtime_dependency('diffy', '~> 3.3')
spec.add_runtime_dependency('webpacker', '~> 5.1')
spec.add_runtime_dependency('truncato', '~> 0.7.11')
spec.add_runtime_dependency('puma', '>= 5.3', '< 6.0')
spec.add_runtime_dependency('barnes', '0.0.9')
spec.add_runtime_dependency('woothee', '~> 1.11')
spec.add_runtime_dependency('algoliasearch', '1.27.5')
spec.add_runtime_dependency('rest-client', '2.1.0')
spec.add_runtime_dependency('groupdate', '5.2.2')
spec.add_runtime_dependency('terminal-table', '3.0.1')
spec.add_runtime_dependency('lograge', '0.11.2')
spec.add_runtime_dependency('jbuilder', '2.11.2')
spec.add_runtime_dependency('nokogiri', '1.11.7')
spec.add_runtime_dependency('ruby-progressbar', '1.11.0')
spec.add_runtime_dependency('colorize', '0.8.1')
spec.add_runtime_dependency('neatjson', '0.9')
spec.add_runtime_dependency('slack-notifier', '2.4.0')
spec.add_runtime_dependency('titleize', '1.4.1')
spec.add_runtime_dependency('countries', '4.0.1')
spec.add_runtime_dependency('country_select', '6.0.0')
spec.add_runtime_dependency('smartling', '2.0.3')
spec.add_runtime_dependency('newrelic_rpm', '7.2.0')
spec.add_runtime_dependency('redis', '4.3.1')
spec.add_runtime_dependency('sassc-rails', '2.1.2')
spec.add_runtime_dependency('gmaps4rails', '2.1.2')
spec.add_runtime_dependency('chartkick', '4.0.5')
spec.add_runtime_dependency('readingtime', '0.4.0')
spec.add_development_dependency('rubocop', '~> 1.16.0')
spec.add_development_dependency('rubocop-rails', '~> 2.6')
spec.metadata = {
'homepage' => 'https://github.com/Nexmo/station',
'source_code_uri' => 'https://github.com/Nexmo/station',
'bug_tracker_uri' => 'https://github.com/Nexmo/station/issues',
'documentation_uri' => 'https://nexmo.github.io/station/'
}
end