Sha256: 4c880f599c600a3a55898f22c37873e949fd0c5fb41cd2c5509d536f9696009e

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
  s.name = "rb-dayone"
  s.version = File.read('version.txt')
  
  s.summary = "Create DayOne journal entries in ruby."
  s.description = "Create or search [DayOne](http://www.dayoneapp.com) journal entries simply and easily in ruby. Currently only supports text entries, image entries to come."
  
  s.author = 'Jan-Yves Ruzicka'
  s.email = 'janyves.ruzicka@gmail.com'
  s.homepage = 'https://github.com/jyruzicka/rb-dayone'
  
  s.files = File.read('Manifest').split("\n")
  s.require_paths << 'lib'
  s.bindir = 'bin'
  s.executables << 'dayone'
  s.extra_rdoc_files = ['README.md']
  
  s.add_runtime_dependency 'builder', '~> 2.0'
  s.add_runtime_dependency 'commander', '~> 4.1.2'
  s.add_runtime_dependency 'libxml-ruby', '~> 2.3.3'
  
  s.post_install_message = <<-end
#{'-'*80}
Hi there! If you're upgrading from version <= 0.2.0 of this gem, I've been a
horrid dev and let a few bugs through in my XML building code. In order to fix
this, you can run `dayone verify` to see if your database needs fixing. If any 
of the errors are my fault, you should be able to fix them with `dayone
repair`.

Sorry if this has caused any inconvenience. If you still have trouble repairing
any of your .doentry files, send me an email and I'll see what I can do to
help.
#{'-'*80}
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rb-dayone-0.4.1 rb-dayone.gemspec
rb-dayone-0.4.0 rb-dayone.gemspec
rb-dayone-0.3.3 rb-dayone.gemspec