Skip to content

Commit

Permalink
Add plugin.json for existing plugins steemit#1157
Browse files Browse the repository at this point in the history
  • Loading branch information
theoreticalbts committed Jun 6, 2017
1 parent 3dc03bb commit bfac0e3
Show file tree
Hide file tree
Showing 15 changed files with 63 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libraries/plugins/account_by_key/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "account_by_key",
"plugin_project": "steemit_account_by_key"
}
4 changes: 4 additions & 0 deletions libraries/plugins/account_history/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "account_history",
"plugin_project": "steemit_account_history"
}
4 changes: 4 additions & 0 deletions libraries/plugins/account_statistics/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "account_statistics",
"plugin_project": "steemit_account_statistics"
}
4 changes: 4 additions & 0 deletions libraries/plugins/auth_util/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "auth_util",
"plugin_project": "steemit_auth_util"
}
4 changes: 4 additions & 0 deletions libraries/plugins/block_info/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "block_info",
"plugin_project": "steemit_block_info"
}
4 changes: 4 additions & 0 deletions libraries/plugins/blockchain_statistics/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "blockchain_statistics",
"plugin_project": "steemit_blockchain_statistics"
}
4 changes: 4 additions & 0 deletions libraries/plugins/debug_node/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "debug_node",
"plugin_project": "steemit_debug_node"
}
4 changes: 4 additions & 0 deletions libraries/plugins/delayed_node/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "delayed_node",
"plugin_project": "steemit_delayed_node"
}
4 changes: 4 additions & 0 deletions libraries/plugins/follow/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "follow",
"plugin_project": "steemit_follow"
}
4 changes: 4 additions & 0 deletions libraries/plugins/market_history/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "market_history",
"plugin_project": "steemit_market_history"
}
4 changes: 4 additions & 0 deletions libraries/plugins/private_message/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "private_message",
"plugin_project": "steemit_private_message"
}
4 changes: 4 additions & 0 deletions libraries/plugins/raw_block/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "raw_block",
"plugin_project": "steemit_raw_block"
}
4 changes: 4 additions & 0 deletions libraries/plugins/tags/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "tags",
"plugin_project": "steemit_tags"
}
4 changes: 4 additions & 0 deletions libraries/plugins/witness/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugin_name": "witness",
"plugin_project": "steemit_witness"
}
7 changes: 7 additions & 0 deletions programs/util/newplugin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
#!/usr/bin/env python3

templates = {
"plugin.json" :
"""{
"plugin_name": "{{plugin_name}}",
"plugin_project": "{{plugin_provider}}_{{plugin_name}}"
}
""",

"CMakeLists.txt" :
"""file(GLOB HEADERS "include/{plugin_provider}/plugins/{plugin_name}/*.hpp")
Expand Down

0 comments on commit bfac0e3

Please sign in to comment.