-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[proposition] code adaptation #9
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
cba6483
Add means to test org-sync code
ardumont 317a967
Fix readme
ardumont 0e2a287
Reference the melpa installation
ardumont e142991
Fix name
ardumont b9f2681
Add keyword
ardumont 0ea5b5d
Fix docstring typos
ardumont 4977d83
Adapt names to their respective namespaces
ardumont 1775f5e
Not every issues is a bug
ardumont 1735b53
Remove no more needed contrib script.\n\nCommit to amend.
ardumont c5c3409
Realign almost as before
ardumont File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ | ||
-L . |
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 +1,2 @@ | ||
/TODO.org | ||
.cask |
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,20 @@ | ||
(source gnu) | ||
(source melpa) | ||
|
||
(package-file "org-sync.el") | ||
|
||
(files "omd.el" | ||
"org-sync.el" | ||
"org-sync-bb.el" | ||
"org-sync-github.el" | ||
"org-sync-redmine.el" | ||
"org-sync-rtm.el") | ||
|
||
(development | ||
(depends-on "dash") | ||
(depends-on "dash-functional") | ||
(depends-on "undercover") | ||
(depends-on "ert-runner") | ||
(depends-on "ert") | ||
(depends-on "ert-expectations") | ||
(depends-on "el-mock")) | ||
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,36 @@ | ||
MODE_NAME=org-sync | ||
VERSION=$$(grep "^;; Version: " $(MODE_NAME).el | cut -f3 -d' ') | ||
PACKAGE_FOLDER=$(MODE_NAME)-$(VERSION) | ||
ARCHIVE=$(PACKAGE_FOLDER).tar | ||
EMACS=emacs | ||
|
||
.PHONY: clean | ||
|
||
deps: | ||
cask | ||
|
||
build: | ||
cask build | ||
|
||
clean-dist: | ||
rm -rf dist/ | ||
|
||
clean: clean-dist | ||
rm -rf *.tar | ||
cask clean-elc | ||
|
||
install: | ||
cask install | ||
|
||
test: clean | ||
cask exec ert-runner | ||
|
||
pkg-el: | ||
cask package | ||
|
||
package: clean pkg-el | ||
cp dist/$(ARCHIVE) . | ||
make clean-dist | ||
|
||
info: | ||
cask info |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having a Cask file is obviously a big plus!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It also permits to make package.
I use it to make the package and send them to marmalade https://marmalade-repo.org/ (another package repository)