alki-reload 0.3.3 → 0.3.4

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
- SHA1:
3
- metadata.gz: 0f5ba8066bdca7a668ada39dce7efb5c47795578
4
- data.tar.gz: cd3e3dbb13c21703215f2cd264fc5d70f847eabb
2
+ SHA256:
3
+ metadata.gz: e989c542270823f9f989771f67ea24b31a10d02a9e061f9904657a2fc7b79678
4
+ data.tar.gz: 363f26b6b21ad466242cf62b8109515a242887e2f152e2cb161ad54492d82245
5
5
  SHA512:
6
- metadata.gz: 90a4a2e06115368471dc474dbf2088553a20f6b8d396a30bc2448f8afa6b67ca0c9c01fc90f8ad33ae55b1ce134a5816d6375de9325b29e65c8983a1bc606aca
7
- data.tar.gz: dc0e560d4a0e5c40a14e4a5bfebb27caff2f54e5b9c43e5f4071a63b1b281a3e64bdd9d85b16e0a105b62cbc8f0bdff165055072e80fb17f56f11b8ee038b65b
6
+ metadata.gz: 8deb29835394d314368398fc0d337e3a1de3393dc51e23454242ee2f04e5cb6ba338020b57e3347bb441ca92d9bfd039fa0cd149b0bae371f518c4dbe0f229a6
7
+ data.tar.gz: 51c54244d0a12b41fecd5e21b6167f991fcf396eb81282287c0a4c14116437fbfa14be2568c913ed7f2c10f7cb59f16e301d396abcf1071d9eab3d10b6224c10
data/.gitignore CHANGED
@@ -7,3 +7,4 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ /bin/
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.10
@@ -1,5 +1,7 @@
1
1
  = Alki::Reload
2
2
 
3
+ image:https://travis-ci.org/alki-project/alki-reload.svg?branch=master["Build Status", link="https://travis-ci.org/alki-project/alki-reload"]
4
+
3
5
  Provides auto-reload feature to Alki projects. Like the auto-reload feature in Ruby on Rails, when
4
6
  enabled it will monitor source files and whenever a change is detected, will reload the project.
5
7
 
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Automatic reloading of alki projects}
13
13
  spec.homepage = "https://github.com/alki-project/alki-reload"
14
14
  spec.license = "MIT"
15
+ spec.required_ruby_version = '>= 2.1.0'
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
18
  f.match(%r{^(test|spec|features)/})
@@ -21,5 +22,5 @@ Gem::Specification.new do |spec|
21
22
  spec.require_paths = ["lib"]
22
23
 
23
24
  spec.add_dependency "listen", "~> 3.0"
24
- spec.add_dependency "alki", "~> 0.13.3"
25
+ spec.add_dependency "alki", "~> 0.14.0"
25
26
  end
@@ -1,5 +1,5 @@
1
1
  module Alki
2
2
  module Reload
3
- VERSION = "0.3.3"
3
+ VERSION = "0.3.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alki-reload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Edlefsen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-03-23 00:00:00.000000000 Z
11
+ date: 2018-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: listen
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.13.3
33
+ version: 0.14.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.13.3
40
+ version: 0.14.0
41
41
  description:
42
42
  email:
43
43
  - matt.edlefsen@gmail.com
@@ -46,16 +46,13 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
+ - ".travis.yml"
49
50
  - CODE_OF_CONDUCT.md
50
51
  - Gemfile
51
52
  - LICENSE.txt
52
53
  - README.adoc
53
54
  - Rakefile
54
55
  - alki-reload.gemspec
55
- - bin/alki
56
- - bin/bundler
57
- - bin/listen
58
- - bin/rake
59
56
  - config/assembly.rb
60
57
  - lib/alki/reload.rb
61
58
  - lib/alki/reload/assembly_delegator.rb
@@ -79,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
79
76
  requirements:
80
77
  - - ">="
81
78
  - !ruby/object:Gem::Version
82
- version: '0'
79
+ version: 2.1.0
83
80
  required_rubygems_version: !ruby/object:Gem::Requirement
84
81
  requirements:
85
82
  - - ">="
@@ -87,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
84
  version: '0'
88
85
  requirements: []
89
86
  rubyforge_project:
90
- rubygems_version: 2.6.12
87
+ rubygems_version: 2.7.6
91
88
  signing_key:
92
89
  specification_version: 4
93
90
  summary: Automatic reloading of alki projects
data/bin/alki DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'alki' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("alki", "alki")
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'bundler' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("bundler", "bundler")
data/bin/listen DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'listen' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("listen", "listen")
data/bin/rake DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'rake' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("rake", "rake")