Skip to content

Commit

Permalink
Updated for initial release and publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmecham committed Jan 14, 2020
1 parent 6f139ea commit 34f153c
Show file tree
Hide file tree
Showing 14 changed files with 38 additions and 16 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.DS_Store
.nova/
3 changes: 3 additions & 0 deletions .nova/Configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"workspace.name" : "RuboCop Extension"
}
19 changes: 19 additions & 0 deletions .nova/Template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"author" : "Justin Mecham",
"description" : "",
"includedConfigs" : {
"build" : false,
"publish" : false,
"run" : false
},
"includedFiles" : {
"hidden" : false,
"ignored" : false
},
"name" : "RuboCop.novaextension",
"rank" : 0,
"variablePrefix" : "nova",
"variables" : [

]
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ChangeLog

## [0.1.0] - 2020-01-14

### Added

- Initial release.
Binary file added Images/extension/rubo-logo-square.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Justin Mecham
Copyright (c) 2019-2020 Justin Mecham

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Empty file added README.md
Empty file.
2 changes: 1 addition & 1 deletion Scripts/Linter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// RuboCop Extension for Nova
// Linter.js
//
// Copyright © 2019 Justin Mecham. All rights reserved.
// Copyright © 2019-2020 Justin Mecham. All rights reserved.
//

const LinterProcess = require("LinterProcess");
Expand Down
2 changes: 1 addition & 1 deletion Scripts/LinterProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// RuboCop Extension for Nova
// LinterProcess.js
//
// Copyright © 2019 Justin Mecham. All rights reserved.
// Copyright © 2019-2020 Justin Mecham. All rights reserved.
//

const Offense = require("Offense");
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Offense.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// RuboCop Extension for Nova
// Offense.js
//
// Copyright © 2019 Justin Mecham. All rights reserved.
// Copyright © 2019-2020 Justin Mecham. All rights reserved.
//

class Offense {
Expand Down
2 changes: 1 addition & 1 deletion Scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// RuboCop Extension for Nova
// main.js
//
// Copyright © 2019 Justin Mecham. All rights reserved.
// Copyright © 2019-2020 Justin Mecham. All rights reserved.
//

const Linter = require("Linter");
Expand Down
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO
8 changes: 0 additions & 8 deletions Tests/test.rb

This file was deleted.

5 changes: 3 additions & 2 deletions extension.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"identifier": "Mecham.RuboCop",
"name": "RuboCop",
"author": "Justin Mecham",
"vendor": "Mecham",
"description": "Integrates with RuboCop to provide contextual issues in Nova.",
"version": "1.0",
"version": "0.1.0",
"categories": ["issues"],
"main": "main.js",
"activationEvents": [
"onLanguage:ruby"
Expand Down

0 comments on commit 34f153c

Please sign in to comment.