Skip to content

Commit e82a794

Browse files
authored
Merge branch 'master' into patch-1
2 parents 2dab130 + d6b411e commit e82a794

File tree

10 files changed

+27
-13
lines changed

10 files changed

+27
-13
lines changed

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require: rubocop-performance
2+
13
AllCops:
24
TargetRubyVersion: 2.4
35
Exclude:

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: ruby
2+
cache: bundler
3+
branches:
4+
only:
5+
- master
6+
bundler_args: --jobs=3 --retry=3
7+
before_install: ./script/setup
8+
script: ./script/cibuild
9+
notifications:
10+
email: false

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ group :test do
55
gem "minitest"
66
gem "rake"
77
gem "rubocop"
8+
gem "rubocop-performance"
89
gem "safe_yaml"
910
end

collections/clean-code-linters/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ items:
55
- jshint/jshint
66
- clutchski/coffeelint
77
- csscomb/csscomb.js
8-
- civiccc/scss-lint
8+
- sds/scss-lint
99
- htmlhint/HTMLHint
1010
- CSSLint/csslint
1111
- PyCQA/pycodestyle
1212
- PyCQA/flake8
13-
- ambv/black
13+
- python/black
1414
- checkstyle/checkstyle
1515
- rubocop-hq/rubocop
1616
- oclint/oclint

collections/hacking-minecraft/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ items:
55
- leereilly/hubot-minecraft-skin
66
- overviewer/Minecraft-Overviewer
77
- cuberite/cuberite
8-
- PocketMine/PocketMine-MP
8+
- pmmp/PocketMine-MP
99
- msmhq/msm
1010
- essentials/Essentials
1111
- Vazkii/Botania

collections/text-editors/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ items:
44
- limetext/lime
55
- textmate/textmate
66
- neovim/neovim
7-
- sharelatex/sharelatex
7+
- overleaf/overleaf
88
- slap-editor/slap
99
- thomaswilburn/Caret
1010
- Komodo/KomodoEdit

test/topics_test_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
def invalid_topic_message(topic)
2222
"'#{topic}' must be between 1-#{MAX_TOPIC_LENGTH} characters, start with a letter or number, " \
23-
"and may include hyphens"
23+
"include only lowercase letters, and may include hyphens"
2424
end
2525

2626
def valid_topic?(raw_topic)

topics/java/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
aliases: java-8, java8
2+
aliases: java-8, java8, java11, java-11, jvm, jdk, openjdk, javase, java-se
33
created_by: James Gosling
44
display_name: Java
55
logo: java.png
66
released: May 23, 1995
77
short_description: Java is an object-oriented programming language used mainly for
8-
desktop and mobile applications.
8+
web, desktop, embedded devices and mobile applications.
99
topic: java
10-
url: https://www.java.com/en/
10+
url: https://www.oracle.com/technetwork/java/javase/overview/index.html
1111
wikipedia_url: https://en.wikipedia.org/wiki/Java_(software_platform)
1212
---
13-
Java was originally developed as an alternative to the C/C++ programming languages. It is now mainly used for building desktop, Android, and web server applications. Java is owned and licensed through Oracle.
13+
Java was originally developed as an alternative to the C/C++ programming languages. It is now mainly used for building web, desktop, mobile, and embedded applications. Java is owned and licensed through Oracle, with free and open source implementations available from Oracle and other vendors.

topics/javafx/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
aliases: javafx-application, javafx-desktop-apps, javafx-gui, javafx-library
2+
aliases: javafx-application, javafx-desktop-apps, javafx-gui, javafx-library, openjfx
33
created_by: Oracle
44
display_name: JavaFX
55
logo: javafx.png
66
related: java, swing
77
released: December 4, 2008
8-
short_description: JavaFX is a Java library used to create graphical user interfaces.
8+
short_description: JavaFX is a Java library used to create graphical user interfaces for desktop, as well mobile and embedded devices.
99
topic: javafx
10+
url: https://openjfx.io
1011
wikipedia_url: https://en.wikipedia.org/wiki/JavaFX
1112
---
12-
JavaFX is a Java library used to build consistent graphical user interfaces across a wide range of platforms. Applications developed with JavaFX can be run on devices such as desktop computers, mobile phones, TVs, tablets, and more.
13+
JavaFX is an open source, next generation client application platform for desktop, mobile and embedded systems built with Java. It is offered as a cross-platform Java library and it delivers consistent graphical user interfaces across a wide range of operating systems and devices. Applications developed with JavaFX can be run on devices such as desktop computers, mobile phones, TVs, tablets, and more.

topics/ruby/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ topic: ruby
1111
url: https://www.ruby-lang.org/en/
1212
wikipedia_url: https://en.wikipedia.org/wiki/Ruby_(programming_language)
1313
---
14-
Ruby was developed by Yukihiro "Matz" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.
14+
Ruby was developed by Yukihiro "Matz" Matsumoto in 1995 with the intent of having an easily readable programming language. It is used by the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.

0 commit comments

Comments
 (0)