guard-git 0.1.0 → 0.1.1

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: 3dc0c3f3652cb23728f23322b379ff06b3127ef5
4
- data.tar.gz: 5bebdf6476fc16d384fd3a74095ab40a6e002029
3
+ metadata.gz: a58df6cd76dba0811427366a070fbf71e18ca260
4
+ data.tar.gz: e3127311154efdfa4ae6468db39fb76f83e9dde2
5
5
  SHA512:
6
- metadata.gz: b537965d8cc47c7e31d86d338db6d085f15390b5659e3218c5b19ef4af0a046120b0b357e4b79186d53f9625728c3f6317cf1cac47ed14dd2719b57b7cfb47c7
7
- data.tar.gz: ef88243bde5d8d0256c2eda77a5e561c2f60d0f78d224bf2f994383cfe5b629e9620f70e103f617e56cba871d27bb15609a04e48567ff07c5bc246f50e12c2ee
6
+ metadata.gz: 84d6066fefb9122f0b5419875072532bb0d22d9718427c251db9d88b4b56614d99cbc71686e90d44156390a7b825e0d69d0607e3801b03f601e94fc5af8d52a0
7
+ data.tar.gz: 3374e816bb6f9cdcf8b04480b2f628b15b933d011899fb74428c63db58ef02b106ac1e43ca5facaa95cac88c977bb53b8d88b84c2cb5bd90e4026281f20d9b96
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- guard-git (0.1.0)
4
+ guard-git (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -5,20 +5,17 @@ you change branches.
5
5
 
6
6
  ## Installation
7
7
 
8
- **NOTE:** This has not yet been released, so cannot be installed without
9
- cloning this repo.
10
-
11
- ~Add this line to your application's Gemfile:~
8
+ Add this line to your application's Gemfile:
12
9
 
13
10
  ```ruby
14
11
  gem 'guard-git'
15
12
  ```
16
13
 
17
- ~And then execute:~
14
+ And then execute:
18
15
 
19
16
  $ bundle
20
17
 
21
- ~Or install it yourself as:~
18
+ Or install it yourself as:
22
19
 
23
20
  $ gem install guard-git
24
21
 
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
19
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
20
20
  `git ls-files -z`.split("\x0").reject do |f|
21
- f.match(%r{^(test|spec|features|test_project|bin|Rakefile)/})
21
+ f.match(%r{^((test|spec|features|test_project|bin|)/|Rakefile|Guardfile|\.)})
22
22
  end
23
23
  end
24
24
  spec.bindir = 'exe'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Guard
4
4
  module Git
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Patterson
@@ -129,16 +129,10 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
- - ".gitignore"
133
- - ".rspec"
134
- - ".rubocop.yml"
135
- - ".travis.yml"
136
132
  - Gemfile
137
133
  - Gemfile.lock
138
- - Guardfile
139
134
  - LICENSE.txt
140
135
  - README.md
141
- - Rakefile
142
136
  - guard-git.gemspec
143
137
  - lib/guard/git.rb
144
138
  - lib/guard/git/changed_files_matcher.rb
data/.gitignore DELETED
@@ -1,12 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
- running_test_project/
10
-
11
- # rspec failure tracking
12
- .rspec_status
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
@@ -1,6 +0,0 @@
1
- AllCops:
2
- TargetRubyVersion: 2.4
3
- NewCops: enable
4
-
5
- Style/Documentation:
6
- Enabled: false
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.2
5
- before_install: gem install bundler -v 1.16.2
data/Guardfile DELETED
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- ignore(%r{.*test_project/.*})
4
-
5
- group :red_green_refactor, halt_on_fail: true do
6
- guard :rspec, cmd: 'bundle exec rspec' do
7
- require 'guard/rspec/dsl'
8
- dsl = Guard::RSpec::Dsl.new(self)
9
-
10
- # RSpec files
11
- rspec = dsl.rspec
12
- watch(rspec.spec_helper) { rspec.spec_dir }
13
- watch(rspec.spec_support) { rspec.spec_dir }
14
- watch(rspec.spec_files)
15
-
16
- # lib files
17
- watch(%r{^lib/(.*)\.rb$}) { |m| "#{rspec.spec_dir}/#{m}_spec.rb" }
18
- watch(%r{^lib/.*\.rb$}) { 'spec/guard/git_integration_spec.rb' }
19
- end
20
-
21
- guard :rubocop, cli: ['--auto-correct'] do
22
- watch(/.+\.rb$/)
23
- end
24
- end
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'bundler/gem_tasks'
4
- require 'rspec/core/rake_task'
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- task default: :spec