succotash 1.0.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: 9849a44836886e39b9cfb74db264d54936655081
4
- data.tar.gz: 686fb9594e0f7ebb0e3f0940dac2fbb07f8ee210
3
+ metadata.gz: 4458f099bbe3f5893bc5135845a5e469e6f26f99
4
+ data.tar.gz: af36ecc7b6d16c1fbbc40a6ab1511e75adde7fc5
5
5
  SHA512:
6
- metadata.gz: 10b3aa02900ad800fdce98629d22f808adc2d44414d4d54ae4a7e387ffadd2fd35d0bd3f9aa4f36e2a7ebfd1eec1d829eb53fa725183473c7d46feb7fd157874
7
- data.tar.gz: d4607ad0233ac04eca1454bf17e9a270445796f82b934e0ee09f9cc744e917623696e37c0d9a59927caa265b7af2c57fbe91c6b208d7eabf0b72c1d15e3f8e11
6
+ metadata.gz: d904ecafae7246ea5c70fa10fd3e599a9cb86e99708a35f7052a48754e349bd5af270875ee2bfde8c0d039b4c9eda75fb5217197f0d41b9350aff6c4a67169ad
7
+ data.tar.gz: 087244af8edc5af8e84809f2d847e1016651727f0156b0e26cc1371f753bd6d48489b8711786d4a8f4943adf04db759d453b67a6021214aadb9b2b6c98e565de
data/.gitignore CHANGED
@@ -8,4 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  .idea
11
-
11
+ *.gem
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 John Cleary
3
+ Copyright (c) 2016 Createk.io
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
data/lib/tasks/seed.rake CHANGED
@@ -5,7 +5,7 @@ Rake::Task['db:seed'].clear
5
5
  namespace :db do
6
6
  desc "Run db:seed:static and db:seed:sample"
7
7
  task seed: %w{seed:static seed:sample} do
8
- warn "[WARNING] `db/seed.rb` and it;s task `rake db:seed` have been disabled by the succotash gem. Please move seed data to db/static.rb or db/sample.rb".light_yellow if File.exist? Fine.join(Rails.root, 'db/seeds.rb')
8
+ warn "[WARNING] `db/seed.rb` and it's task `rake db:seed` have been disabled by the succotash gem. Please move seed data to db/static.rb or db/sample.rb".light_yellow if File.exist? File.join(Rails.root, 'db/seeds.rb')
9
9
  end
10
10
 
11
11
  namespace :seed do
@@ -4,7 +4,6 @@ namespace :succotash do
4
4
  spec = Gem::Specification.find_by_name 'succotash'
5
5
 
6
6
  puts "*** Creating seed dirs ***".green
7
- system("mkdir -p #{Rails.root}/db/seeds/{static,sample}") unless Dir.exist?("#{Rails.root}/db/seeds")
8
7
  system("mkdir -p #{Rails.root}/db/seeds/static") unless Dir.exist?("#{Rails.root}/db/seeds/static")
9
8
  system("mkdir -p #{Rails.root}/db/seeds/sample") unless Dir.exist?("#{Rails.root}/db/seeds/sample")
10
9
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: succotash
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hassan Khalid
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-01-22 00:00:00.000000000 Z
12
+ date: 2016-01-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler