-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.json
58 lines (58 loc) · 1.51 KB
/
app.json
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
{
"name": "ruby-gem-downloads-badge",
"description": "Clean and simple gem download badge,courtesy of shields.io, that displays the downloads number of your gem",
"keywords": [
"badges",
"shields",
"gem",
"ruby",
"downloads",
"count",
"total"
],
"repository": "https://github.com/bogdanRada/ruby-gem-downloads-badge",
"website": "https://ruby-gem-downloads-badge.herokuapp.com",
"logo": "https://ruby-gem-downloads-badge.herokuapp.com/favicon.ico",
"success_url": "/",
"scripts": {
},
"env": {
"APP_ENV": {
"description": "The new environment variable used by Sinatra to set the environment (instead of RACK_ENV)",
"required": true
},
"LANG": {
"description": "The language used by the application (Default: en_US.UTF-8)",
"required": true
},
"RACK_ENV": {
"description": "The old (deprecated) environment variable used by Sinatra to set the environment - kept here for compatibility with other gems",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [],
"region": "eu",
"stack": "heroku-20",
"buildpacks": [
{
"url": "heroku/ruby"
},
{
"url": "https://github.com/heroku/heroku-buildpack-locale"
}
],
"environments": {
"test": {
"scripts": {
"test-setup": "gem install rubocop && gem install reek",
"test": "rubocop . && reek . && bundle exec rake docs && bundle exec rake"
}
}
}
}