lapidary 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -48,19 +48,19 @@ Rake::RDocTask.new do |rdoc|
48
48
  end
49
49
 
50
50
  ## YARD
51
- require 'yard'
52
- require 'yard/rake/yardoc_task'
51
+ require "yard"
52
+ require "yard/rake/yardoc_task"
53
53
  YARD::Rake::YardocTask.new do |t|
54
- t.files = ['app/controllers/**/*.rb','app/helpers/**/*.rb', 'app/mailers/**/*.rb', 'app/models/**/*.rb', 'lib/**/*.rb']
54
+ t.files = ["lib/**/*.rb"]
55
55
  t.options = []
56
- t.options << '--debug' << '--verbose' if $trace
56
+ t.options << "--debug" << "--verbose" if $trace
57
57
  end
58
58
 
59
59
  # CI::Reporter
60
60
  require "ci/reporter/rake/rspec"
61
61
 
62
62
  ## RCov
63
- if RUBY_VERSION <= '1.8.7'
63
+ if RUBY_VERSION <= "1.8.7"
64
64
  require "rcov"
65
65
  RSpec::Core::RakeTask.new("spec:rcov") do |t|
66
66
  t.rcov = true
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "lapidary"
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kenji Hara"]
@@ -48,19 +48,19 @@ Rake::RDocTask.new do |rdoc|
48
48
  end
49
49
 
50
50
  ## YARD
51
- require 'yard'
52
- require 'yard/rake/yardoc_task'
51
+ require "yard"
52
+ require "yard/rake/yardoc_task"
53
53
  YARD::Rake::YardocTask.new do |t|
54
- t.files = ['app/controllers/**/*.rb','app/helpers/**/*.rb', 'app/mailers/**/*.rb', 'app/models/**/*.rb', 'lib/**/*.rb']
54
+ t.files = ["lib/**/*.rb"]
55
55
  t.options = []
56
- t.options << '--debug' << '--verbose' if $trace
56
+ t.options << "--debug" << "--verbose" if $trace
57
57
  end
58
58
 
59
59
  # CI::Reporter
60
60
  require "ci/reporter/rake/rspec"
61
61
 
62
62
  ## RCov
63
- if RUBY_VERSION <= '1.8.7'
63
+ if RUBY_VERSION <= "1.8.7"
64
64
  require "rcov"
65
65
  RSpec::Core::RakeTask.new("spec:rcov") do |t|
66
66
  t.rcov = true
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lapidary
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kenji Hara