rake_rack 0.0.6 → 0.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f3ce1fb58a6142ef4ee8b5dbb63b56ecca4651e
4
- data.tar.gz: 2d02f6292f670be585aa6c28c57a27fef7e79b4a
3
+ metadata.gz: 780cb07503e5ad1cd4f423fcd1fd3886202f51c0
4
+ data.tar.gz: 8dd341e4a786dda152bd723d77f0ea89b9908eef
5
5
  SHA512:
6
- metadata.gz: 3457e22c01719b5616fa2f36211d80bc09194bb5ad94e0405d08665afd48ef2b365edb734ffaaedf65543bc095a39eb48a66e489ac54670e7bf465daba81c28e
7
- data.tar.gz: 5cc284136eed4066da4c2f1cc9be874c24719fd397d8c04c7a1a2e323b0d2cdcb2785be7940aed30859c242da0ae2e5a6b062f5be915c844c488100a714b72c7
6
+ metadata.gz: e4032d4f0851e30c42de13eb3a096e2edc37db8370c9f4ee3fbfb553dad87ca794f78fd470c8ea6b0e4f5638bd583839cc8364592e4b635d635fe6b303bd77b5
7
+ data.tar.gz: 3e5574e3aed38972d1921fc55418151510dc13a7059dd4fe47ca7fda8041877a6812dd742de6dba708a596b79700978f590f61c5181a5276decf3c91f8517ea4
data/Gemfile CHANGED
@@ -2,6 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem 'rspec'
4
4
  gem 'rake'
5
- gem 'pry-byebug'
6
5
  gem 'simplecov'
7
6
  gem 'timecop'
data/Gemfile.lock CHANGED
@@ -1,23 +1,9 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- byebug (2.7.0)
5
- columnize (~> 0.3)
6
- debugger-linecache (~> 1.2)
7
- coderay (1.1.0)
8
- columnize (0.8.9)
9
- debugger-linecache (1.2.0)
10
4
  diff-lcs (1.2.5)
11
5
  docile (1.1.5)
12
- method_source (0.8.2)
13
6
  multi_json (1.10.1)
14
- pry (0.10.0)
15
- coderay (~> 1.1.0)
16
- method_source (~> 0.8.1)
17
- slop (~> 3.4)
18
- pry-byebug (1.3.3)
19
- byebug (~> 2.7)
20
- pry (~> 0.10)
21
7
  rake (10.1.0)
22
8
  rspec (3.0.0)
23
9
  rspec-core (~> 3.0.0)
@@ -36,14 +22,12 @@ GEM
36
22
  multi_json
37
23
  simplecov-html (~> 0.8.0)
38
24
  simplecov-html (0.8.0)
39
- slop (3.5.0)
40
25
  timecop (0.7.1)
41
26
 
42
27
  PLATFORMS
43
28
  ruby
44
29
 
45
30
  DEPENDENCIES
46
- pry-byebug
47
31
  rake
48
32
  rspec
49
33
  simplecov
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  RakeRack
2
2
  ========
3
3
  [![Build Status](https://travis-ci.org/RichardVickerstaff/rake_rack.svg?branch=master)](https://travis-ci.org/RichardVickerstaff/rake_rack)
4
+ [![Gem Version](https://badge.fury.io/rb/rake_rack.svg)](http://badge.fury.io/rb/rake_rack)
4
5
  Common rake tasks I use a lot
5
6
  -----------------------------------------
6
7
 
@@ -13,9 +14,11 @@ Installation
13
14
 
14
15
  Usage
15
16
  -----
16
- PoolNet is made up of many rake tasks, add `require "rake_rack"` to the top of your default.rake file to gain access to them.
17
+ RakeRack is made up of many rake tasks, add `require "rake_rack"` to the top of your default.rake file to gain access to them.
17
18
  You can then call them like you would any other rake task.
18
19
 
20
+ All tasks are namespaced with `:rake_rack` to prevent clashing with other tasks
21
+
19
22
  ToDo
20
23
  ----
21
24
  1. Add a list of all the rake tasks to the Readme
data/Rakefile CHANGED
@@ -1,6 +1,9 @@
1
+ require 'rake/clean'
1
2
  require './lib/rake_rack'
2
3
 
3
4
  task :default => [
5
+ :clean,
6
+ :"rake_rack:code_quality:all",
4
7
  :"rake_rack:rspec",
5
8
  :"rake_rack:coverage:check_specs",
6
9
  :"rake_rack:ok",
data/history.rdoc CHANGED
@@ -1,3 +1,5 @@
1
+ == 0.1.0 (18 July 2014)
2
+
1
3
  == 0.0.6 (17 July 2014)
2
4
 
3
5
  * Extract version logic into a class
data/rake_rack.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "rake_rack"
7
- spec.version = '0.0.6'
7
+ spec.version = '0.1.0'
8
8
  spec.authors = ["Richard Vickerstaff"]
9
9
  spec.email = ["m3akq@btinternet.com"]
10
10
  spec.description = "A set of rake tasks I commonly use - Formerly known as pool_net"
data/spec/spec_helper.rb CHANGED
@@ -1,9 +1,10 @@
1
1
  require 'simplecov'
2
- require 'pry-byebug'
3
2
  require 'timecop'
3
+ require 'tempfile'
4
4
 
5
5
 
6
6
  SimpleCov.start do
7
+ add_filter '/vendor/'
7
8
  coverage_dir 'log/coverage/spec'
8
9
  end
9
10
 
@@ -1,7 +1,7 @@
1
1
  namespace :rake_rack do
2
2
  namespace :code_quality do
3
3
  desc 'Runs all code quality checks'
4
- task :all => [:trailing_spaces, :shoulds, :debugger, :pry, :console_log, :time_check]
4
+ task :all => [:trailing_spaces, :shoulds, :debugger, :pry, :console_log]
5
5
 
6
6
  desc 'check for trailing spaces'
7
7
  task :trailing_spaces do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake_rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Vickerstaff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-17 00:00:00.000000000 Z
11
+ date: 2014-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake