Skip to content

Commit

Permalink
Install semmy release tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
tf committed Jun 9, 2016
1 parent cde6fa2 commit 2a93e31
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ rescue LoadError
end

Bundler::GemHelper.install_tasks

require 'semmy'
Semmy::Tasks.install
5 changes: 5 additions & 0 deletions lib/pageflow/text_page/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Pageflow
module TextPage
VERSION = '0.3.0.dev'.freeze
end
end
14 changes: 10 additions & 4 deletions pageflow-text-page.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pageflow/text_page/version'

Gem::Specification.new do |spec|
spec.name = "pageflow-text-page"
spec.version = "0.3.0.alpha"
spec.authors = ["Christoph Merkelbach"]
spec.email = ["cmerkelbach@codevise.de"]
spec.version = Pageflow::TextPage::VERSION
spec.authors = ["Codevise Solutions Ltd."]
spec.email = ["info@codevise.de"]
spec.summary = "Pageflow Page Type text pages"
spec.homepage = "https://github.com/codevise/pageflow-text-page"
spec.license = "MIT"
Expand All @@ -14,7 +17,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_runtime_dependency 'pageflow', '~> 0.10.pre'
spec.add_runtime_dependency 'pageflow', '~> 0.10'

# Using translations from rails locales in javascript code.
spec.add_runtime_dependency 'i18n-js'
Expand All @@ -25,4 +28,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rspec-rails", "~> 2.0"
spec.add_development_dependency 'factory_girl_rails'
spec.add_development_dependency "sqlite3"

# Semantic versioning rake tasks
spec.add_development_dependency 'semmy', '~> 0.2'
end

0 comments on commit 2a93e31

Please sign in to comment.