schlepper 0.10.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3fa3e185f4b1e3af4ccaff4ad72af1207b4b36e3
4
- data.tar.gz: 95a4032864b39ef3f9506764c446b04ad40b40ac
3
+ metadata.gz: '08c02b1f20e7944465a02e2fbf4c0f3fd2602006'
4
+ data.tar.gz: 9be4f044693fffd835322d35df5599a739215894
5
5
  SHA512:
6
- metadata.gz: 3944d556c0c8a83549355e4eb4466dd5e1c9308f458d066ce112521aabb4e4aafdb12129c347599dea8cb194bf52812a8154c32f342866ddb286ae12a719f8c8
7
- data.tar.gz: 0a5e9b939b61b8ee2ba5ac5e6511d7923b21fdc0f6343d423e9ff64e17ac7fa5544cc5d8cad03f581693b8e1c2b1dcdaae10c08cfc253e4cdf0fd7949bb2e75a
6
+ metadata.gz: 6bedefdce224de73b3b7ec84d99dbf8779d84fda48a552957b7c27e90d10fb65db08b1174bd052cae4ace62cdc754115dd8f64f6e7782051f10adebac1a2b70b
7
+ data.tar.gz: 72d2055cd25df83cf495369bb3b02a07bef9cad2c557ad50cbca1bb63aff66d7ad69bba0d875fb6636c5d5a626e08f83ad3e5198b7fa0145042de4bbefa117cc
@@ -0,0 +1,7 @@
1
+ Copyright 2016-present Grand Rounds, Inc.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -68,6 +68,7 @@ module Schlepper
68
68
  private def load_tasks_that_need_run
69
69
  Dir.glob("#{Rails.root}/#{Paths::TASK_DIR}/*.rb").
70
70
  map { |f| File.basename(f) }.
71
+ sort.
71
72
  reject { |f| f.scan(/\A(\d{10,})/).empty? }.
72
73
  reject { |f| @versions.has_key?(f.scan(/\A(\d{10,})/).first.first) }.
73
74
  each { |f| require File.join(Rails.root, 'script', 'schleppers', f) }
@@ -1,3 +1,3 @@
1
1
  module Schlepper
2
- VERSION = '0.10.1'
2
+ VERSION = '1.0.2'
3
3
  end
@@ -8,6 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Schlepper::VERSION
9
9
  spec.authors = ["Rory O'Connell"]
10
10
  spec.email = ["rory.oconnell@grandrounds.com"]
11
+ spec.licenses = ['MIT']
11
12
 
12
13
  spec.summary = %q{Adds tracking of one off data scripts for Rails.}
13
14
  spec.description = %q{}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schlepper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rory O'Connell
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-27 00:00:00.000000000 Z
11
+ date: 2017-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -133,6 +133,7 @@ files:
133
133
  - ".gitignore"
134
134
  - ".travis.yml"
135
135
  - Gemfile
136
+ - LICENSE.md
136
137
  - README.md
137
138
  - Rakefile
138
139
  - bin/console
@@ -152,7 +153,8 @@ files:
152
153
  - lib/tasks/schlepper.rake
153
154
  - schlepper.gemspec
154
155
  homepage: https://github.com/ConsultingMD/schlepper
155
- licenses: []
156
+ licenses:
157
+ - MIT
156
158
  metadata:
157
159
  allowed_push_host: https://rubygems.org
158
160
  post_install_message:
@@ -171,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
171
173
  version: '0'
172
174
  requirements: []
173
175
  rubyforge_project:
174
- rubygems_version: 2.6.10
176
+ rubygems_version: 2.6.11
175
177
  signing_key:
176
178
  specification_version: 4
177
179
  summary: Adds tracking of one off data scripts for Rails.