Skip to content

seapy/textbundle_to

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
js
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

TextbundleTo

textbundle format to publishing platforms(steemit)

[Korean] textbundle 포맷의 파일을 글 쓰기 플랫폼(스팀잇)으로 전송

Use below link when install Bear, that is affiliate link.

Usage

Docker

$ docker run -it --rm \
    -v "$(pwd)"/your_text_bundle.textbundle:/app/post.textbundle \
    -e STEEMIT_WIF="your steemit wif" \
    -e STEEMIT_USER_NAME="your steemit user name" \
    -e STEEMIT_TAGS="tag1,tag2" \
    seapy/textbundle_to:1.1.0 steemit

Rake

$ bundle exec rake steemit:publish"[your_text_bundle.textbundle,your_wif,steemit_user_name,tag1,tag2]"

Ruby

config = TextbundleTo::Configuration.new do |config|
  config.steemit_wif_private_key = 'your steemit wif'
  config.steemit_user_name = 'your steemit user name'
end
steemit = TextbundleTo::Steemit::Publish.new(config: config)
result = steemit.publish(textbundle_path: 'your_text_bundle.textbundle', tags: ['tag1','tag2'])
puts result[:success]
puts result[:message]

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Docker release

$ bin/docker_build 1.1.0
$ bin/docker_release 1.1.0

TODO

  • Replace code from node to ruby, when generate image upload key
  • Release to rubygems
  • Support command line program
  • Suppoert medium, wordpress

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/seapy/textbundle_to.

License

The gem is available as open source under the terms of the MIT License.

About

textbundle format to publishing platforms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published