slippers 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/VERSION.yml +2 -2
- data/tasks/spec.rake +14 -0
- 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
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.
|
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: []
|