slippers 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION.yml +2 -2
  3. data/tasks/spec.rake +14 -0
  4. metadata +2 -1
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ begin
14
14
  gem.homepage = "http://slippersrb.com"
15
15
  gem.description = "A strict templating library for ruby"
16
16
  gem.authors = ["Sarah Taraporewalla"]
17
- gem.files = FileList["[A-Z]*", "{bin,lib,spec,examples}/**/*"]
17
+ gem.files = FileList["[A-Z]*", "{bin,lib,spec,examples,tasks}/**/*"]
18
18
  gem.add_dependency 'treetop'
19
19
  end
20
20
  Jeweler::GemcutterTasks.new
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :minor: 0
3
- :patch: 12
4
2
  :major: 0
3
+ :minor: 0
4
+ :patch: 13
data/tasks/spec.rake ADDED
@@ -0,0 +1,14 @@
1
+ require 'spec/rake/spectask'
2
+
3
+ namespace :spec do
4
+ desc "Run all specs"
5
+ Spec::Rake::SpecTask.new(:run) do |t|
6
+ t.pattern = 'spec/**/*.rb'
7
+ end
8
+
9
+ desc "Run all specs with rcov"
10
+ Spec::Rake::SpecTask.new(:run_with_coverage) do |t|
11
+ t.pattern = 'spec/**/*.rb'
12
+ t.rcov = true
13
+ end
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slippers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sarah Taraporewalla
@@ -134,6 +134,7 @@ files:
134
134
  - spec/views/person/age.st
135
135
  - spec/views/person/date_renderer.rb
136
136
  - spec/views/person/name.st
137
+ - tasks/spec.rake
137
138
  has_rdoc: true
138
139
  homepage: http://slippersrb.com
139
140
  licenses: []