lambda_punch 0.0.3 → 0.0.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
2
  SHA256:
3
- metadata.gz: e6c2ce456599a6962dba0d2e391fe4a50b0a6b970a639ee88eba170868c801ae
4
- data.tar.gz: 94998efdef31f874202dc32ec145448734e0f3e9b1456ac298b5d26fd910d76b
3
+ metadata.gz: 7efb456be5902ca1efefb893af810b03b2f6f0590f2eb894c7ed89c8d4a2b277
4
+ data.tar.gz: 81141dbc0db7a3f26fa9bdd0407d8b582ea8f5868919b7bc914a687ef6d46885
5
5
  SHA512:
6
- metadata.gz: '018bca029eb50f631a122770588e27679c30103acfbecee14675f7d63aa346e742e8a6644b985d362cc5dfc2f04d9f49367de38d3ab04ec8a7e7afe7a4c03a9b'
7
- data.tar.gz: a5c1cf9b73241914ebb4a5761c3a89a7142bbc29db573ebddf3119e90573abe43f4308dec748184c7fce6d045f0ed72f9546ccb16c4a94e54d6bb4924b1434e4
6
+ metadata.gz: 4ae480c414a1be271caf1340c5ccc4b10c57dc1c5dad7fa38dc35009caba6b1c3e63477b271e1a9b751eacccfc38ac72e7dea776c502b9ae19cc3224a611b572
7
+ data.tar.gz: 92d293001511ad47ba906fe796470fbef185f90c151efb0312574beaace8d80229fabc4b72d73a74219e5d49bcc9076546d308c7ea240d5d04f6032c69c19e4c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.0.4] - 2021-06-28
2
+
3
+ - Fix install rake bug. Non-Rails rake doc.
4
+
1
5
  ## [0.0.3] - 2021-06-28
2
6
 
3
7
  - Add rake runtime dep.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lambda_punch (0.0.3)
4
+ lambda_punch (0.0.4)
5
5
  concurrent-ruby
6
6
  rake
7
7
  rb-inotify
data/README.md CHANGED
@@ -42,6 +42,13 @@ Within your project or [Rails application's](https://lamby.custominktech.com/doc
42
42
  RUN bundle exec rake lambda_punch:install
43
43
  ```
44
44
 
45
+ If you are using `LambdaPunch` with a non-Rails project, add this to your Rake file
46
+
47
+ ```ruby
48
+ spec = Gem::Specification.find_by_name 'lambda_punch'
49
+ load "#{spec.gem_dir}/lib/lambda_punch/tasks/install.rake"
50
+ ```
51
+
45
52
  ## 🧰 Usage
46
53
 
47
54
  Anywhere in your application's code, use the `LambdaPunch.push` method to add blocks of code to your jobs queue.
@@ -5,7 +5,7 @@ namespace :lambda_punch do
5
5
  require 'fileutils'
6
6
  FileUtils.mkdir_p '/opt/extensions'
7
7
  extension = File.expand_path "#{__dir__}/../extensions/lambdapunch"
8
- FileUtils.cp extension '/opt/extensions/'
8
+ FileUtils.cp extension, '/opt/extensions/'
9
9
  end
10
10
 
11
11
  end
@@ -1,3 +1,3 @@
1
1
  module LambdaPunch
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lambda_punch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins