This repository has been archived by the owner on Mar 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
1,426 additions
and
751 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#Руководство по доработке проекта oscript-library | ||
|
||
Репозиторий oscript-library включает в себя так называемую "стандартную библиотеку" пакетов OneScript, которые поставляются вместе с самим интерпретатором OneScript. | ||
В связи с этим, есть два варианта добавления вашего кода в проект: | ||
|
||
* Вы хотите доработать существующий пакет | ||
* Вы хотите добавить свой пакет в стандартную библиотеку | ||
|
||
##Я хочу доработать существующий пакет | ||
|
||
* Создайте issue в oscript-library с описанием того, что вы хотите доработать. Это нужно для того, чтобы исключить двойную работу. Возможно, кто-то начнет делать нечто похожее одновременно с вами. Issue позволит видеть ведущуюся или планирующуюся работу. | ||
* Создайте форк oscript-library в своем аккаунте github | ||
* Создайте ветку в своем форке с названием **feature/issue-<номер issue>-<любой текст на ваш выбор, если надо>** | ||
* Внесите необходимые доработки в своем форке | ||
* Создайте pull-request нажатием на соответствующую кнопку в гитхабе и отправьте его нам | ||
* Команда разработки посмотрит код и, вероятно, внесет дополнения и предложения. | ||
* Внесите в ваш код эти дополнения таким же образом - просто дополнительными коммитами в ту же ветку **featue/*** | ||
* Новый pull-request создавать не надо, дополнения будут видны сразу. | ||
* Когда код будет принят командой, ваши изменения попадут в основную ветку, а ваше имя - в список контрибьюторов oscript-library | ||
* Спасибо! | ||
|
||
##Я хочу добавить свой пакет в стандартную библиотеку | ||
|
||
* Создайте репозитарий на github, поместите в него свою библиотеку | ||
* Создайте issue в oscript-library с предложением к сообществу о включении вашего пакета в стандартную библиотеку | ||
* Мы посмотрим ваш код и если он нам нужен именно в стандартной библиотеке - мы скажем спасибо и с удовольствием его возьмем | ||
|
||
Пакет должен иметь в своем составе файл packagedef с описанием пакета. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
| ||
Описание.Имя("asserts") | ||
.Версия("1.0") | ||
.Версия("0.2.1") | ||
.ВключитьФайл("src") | ||
.ВключитьФайл("tests") | ||
.ВключитьФайл("lib.config") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
#Использовать "src/core" | ||
|
||
Процедура ПриЗагрузкеБиблиотеки(Путь, СтандартнаяОбработка, Отказ) | ||
|
||
СтандартнаяОбработка = Ложь; | ||
|
||
КонецПроцедуры |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.