walter/abraham.gemspec
Jonathan Abbett 60dcd0dd31
Don't start a tour if the first step's attachTo isn't present
Resolves #28, includes documentation note about step-skipping behavior.
2020-01-09 07:39:29 -05:00

27 lines
935 B
Ruby

# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "abraham/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "abraham"
s.version = Abraham::VERSION
s.authors = ["Jonathan Abbett"]
s.email = ["jonathan@act.md"]
s.homepage = "https://github.com/actmd/abraham"
s.summary = "Trackable application tours for Rails with i18n support, based on Shepherd.js."
s.description = "Trackable application tours for Rails with i18n support, based on Shepherd.js."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_development_dependency 'sassc-rails'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'listen'
s.add_development_dependency 'web-console'
end