Skip to content

Commit bea5de9

Browse files
committed
Merge branch 'matt/as_plugin' into 'master'
Convert to gradle plugin See merge request mx/binks!11
2 parents 88c5e39 + 505efd3 commit bea5de9

47 files changed

Lines changed: 986 additions & 982 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 232 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,232 @@
1-
.ruby-version
2-
.ruby-gemset
3-
pkg
4-
coverage
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,gradle,java,kotlin,intellij
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,gradle,java,kotlin,intellij
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# AWS User-specific
17+
.idea/**/aws.xml
18+
19+
# Generated files
20+
.idea/**/contentModel.xml
21+
22+
# Sensitive or high-churn files
23+
.idea/**/dataSources/
24+
.idea/**/dataSources.ids
25+
.idea/**/dataSources.local.xml
26+
.idea/**/sqlDataSources.xml
27+
.idea/**/dynamic.xml
28+
.idea/**/uiDesigner.xml
29+
.idea/**/dbnavigator.xml
30+
31+
# Gradle
32+
.idea/**/gradle.xml
33+
.idea/**/libraries
34+
35+
# Gradle and Maven with auto-import
36+
# When using Gradle or Maven with auto-import, you should exclude module files,
37+
# since they will be recreated, and may cause churn. Uncomment if using
38+
# auto-import.
39+
# .idea/artifacts
40+
# .idea/compiler.xml
41+
# .idea/jarRepositories.xml
42+
# .idea/modules.xml
43+
# .idea/*.iml
44+
# .idea/modules
45+
# *.iml
46+
# *.ipr
47+
48+
# CMake
49+
cmake-build-*/
50+
51+
# Mongo Explorer plugin
52+
.idea/**/mongoSettings.xml
53+
54+
# File-based project format
55+
*.iws
56+
57+
# IntelliJ
58+
out/
59+
60+
# mpeltonen/sbt-idea plugin
61+
.idea_modules/
62+
63+
# JIRA plugin
64+
atlassian-ide-plugin.xml
65+
66+
# Cursive Clojure plugin
67+
.idea/replstate.xml
68+
69+
# SonarLint plugin
70+
.idea/sonarlint/
71+
72+
# Crashlytics plugin (for Android Studio and IntelliJ)
73+
com_crashlytics_export_strings.xml
74+
crashlytics.properties
75+
crashlytics-build.properties
76+
fabric.properties
77+
78+
# Editor-based Rest Client
79+
.idea/httpRequests
80+
81+
# Android studio 3.1+ serialized cache file
82+
.idea/caches/build_file_checksums.ser
83+
84+
### Intellij Patch ###
85+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
86+
87+
# *.iml
88+
# modules.xml
89+
# .idea/misc.xml
90+
# *.ipr
91+
92+
# Sonarlint plugin
93+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
94+
.idea/**/sonarlint/
95+
96+
# SonarQube Plugin
97+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
98+
.idea/**/sonarIssues.xml
99+
100+
# Markdown Navigator plugin
101+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
102+
.idea/**/markdown-navigator.xml
103+
.idea/**/markdown-navigator-enh.xml
104+
.idea/**/markdown-navigator/
105+
106+
# Cache file creation bug
107+
# See https://youtrack.jetbrains.com/issue/JBR-2257
108+
.idea/$CACHE_FILE$
109+
110+
# CodeStream plugin
111+
# https://plugins.jetbrains.com/plugin/12206-codestream
112+
.idea/codestream.xml
113+
114+
### Java ###
115+
# Compiled class file
116+
*.class
117+
118+
# Log file
119+
*.log
120+
121+
# BlueJ files
122+
*.ctxt
123+
124+
# Mobile Tools for Java (J2ME)
125+
.mtj.tmp/
126+
127+
# Package Files #
128+
*.jar
129+
*.war
130+
*.nar
131+
*.ear
132+
*.zip
133+
*.tar.gz
134+
*.rar
135+
136+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
137+
hs_err_pid*
138+
replay_pid*
139+
140+
### Kotlin ###
141+
# Compiled class file
142+
143+
# Log file
144+
145+
# BlueJ files
146+
147+
# Mobile Tools for Java (J2ME)
148+
149+
# Package Files #
150+
151+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
152+
153+
### macOS ###
154+
# General
155+
.DS_Store
156+
.AppleDouble
157+
.LSOverride
158+
159+
# Icon must end with two \r
160+
Icon
161+
162+
163+
# Thumbnails
164+
._*
165+
166+
# Files that might appear in the root of a volume
167+
.DocumentRevisions-V100
168+
.fseventsd
169+
.Spotlight-V100
170+
.TemporaryItems
171+
.Trashes
172+
.VolumeIcon.icns
173+
.com.apple.timemachine.donotpresent
174+
175+
# Directories potentially created on remote AFP share
176+
.AppleDB
177+
.AppleDesktop
178+
Network Trash Folder
179+
Temporary Items
180+
.apdisk
181+
182+
### Windows ###
183+
# Windows thumbnail cache files
184+
Thumbs.db
185+
Thumbs.db:encryptable
186+
ehthumbs.db
187+
ehthumbs_vista.db
188+
189+
# Dump file
190+
*.stackdump
191+
192+
# Folder config file
193+
[Dd]esktop.ini
194+
195+
# Recycle Bin used on file shares
196+
$RECYCLE.BIN/
197+
198+
# Windows Installer files
199+
*.cab
200+
*.msi
201+
*.msix
202+
*.msm
203+
*.msp
204+
205+
# Windows shortcuts
206+
*.lnk
207+
208+
### Gradle ###
209+
.gradle
210+
**/build/
211+
!src/**/build/
212+
213+
# Ignore Gradle GUI config
214+
gradle-app.setting
215+
216+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
217+
!gradle-wrapper.jar
218+
219+
# Cache of project
220+
.gradletasknamecache
221+
222+
# Eclipse Gradle plugin generated files
223+
# Eclipse Core
224+
.project
225+
# JDT-specific (Eclipse Java Development Tools)
226+
.classpath
227+
228+
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,gradle,java,kotlin,intellij
229+
230+
.coppuccino
231+
232+
.dependency-check-data

.gitlab-ci.yml

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
cache:
2-
paths:
3-
- vendor
4-
5-
stages:
6-
- test
7-
8-
.test-specific-version: &test-specific-version
9-
image: "${CI_BUILD_NAME}"
10-
stage: test
11-
before_script:
12-
- apt-get update -qq
13-
- gem install bundler --no-doc
14-
- bundle install --jobs=2 --retry=3
15-
script:
16-
- bundle exec rubocop
17-
- bundle exec rake spec
18-
19-
ruby:2.5:
20-
<<: *test-specific-version
1+
include:
2+
- project: 'mx/ci-templates'
3+
file: 'gitlab-ci/java-publish.template.yml'

.rspec

Lines changed: 0 additions & 1 deletion
This file was deleted.

.rubocop.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.vogue.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
packageRules:
2+
-
3+
package: "com.github.mxenabled.binks"
4+
rules:
5+
major:
6+
requireLatest: false
7+
minor:
8+
requireLatest: false
9+
patch:
10+
requireLatest: false

Gemfile

Lines changed: 0 additions & 5 deletions
This file was deleted.

Gemfile.lock

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)