Sha256: e67db7577391b7d0117094c3ba60421ca63ba39f42a884ffcec70575944ab6ba

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__), 'lib', 'sifttter_redux', 'version.rb'])

spec = Gem::Specification.new do |s| 
  s.name = 'sifttter-redux'
  s.version = SifttterRedux::VERSION
  s.author = 'Aaron Bach'
  s.email = 'bachya1208@gmail.com'
  s.homepage = 'https://github.com/bachya/sifttter-redux'
  s.platform = Gem::Platform::RUBY
  s.summary = 'Automated IFTTT to Day One engine.'
  s.description = 'A customized IFTTT-to-Day One service that allows for smart installation and automated running on a standalone *NIX device (such as a Raspberry Pi).'

  s.files = `git ls-files`.split("\n")
  s.test_files = `git ls-files -- test`.split("\n")
  s.require_paths << 'lib'
  s.bindir = 'bin'
  s.executables << 'srd'
  
  s.license = 'MIT'
  s.rdoc_options = ['--charset=UTF-8']
  s.extra_rdoc_files = %w[README.md HISTORY.md LICENSE]
  
  s.add_development_dependency('rake', '~> 0')
  s.add_runtime_dependency('chronic', '0.10.2')
  s.add_runtime_dependency('gli','2.9.0')
  s.add_runtime_dependency('methadone', '1.3.1')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sifttter-redux-0.3.7 sifttter_redux.gemspec
sifttter-redux-0.3.6 sifttter_redux.gemspec