kratos 1.0.0 → 1.0.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: 3bf3258c4f75a7e9173e69b697a57132ea148e5f
4
- data.tar.gz: 9eaaff5b95d9fd80e7f50af256044862f825908d
3
+ metadata.gz: 6e847aa2496ff81c53b087fd062f24f08f28ad3f
4
+ data.tar.gz: 6f7c79661d4e952fd8fa4242ac7e687304cbeb1c
5
5
  SHA512:
6
- metadata.gz: 7200c9d126bac15d7c6ce6df689134dce2d785348f556357af26f3151d368afa93000fdf6530931612e32bd627727e030697e7446fe074807b90d2a7a1c27dbc
7
- data.tar.gz: 4e262bc5e8209e09e1ea69ced3eaf1060e074fa1260e0f48e0951ac1bf60378dd2cbde580ea3a2a5b43089f537c6944905f5ab0a4dfcc54e7652321da8923a53
6
+ metadata.gz: 11e8f246cb4bd29e4c860400f8b30af309f129375d50b432d8306c06a1456c829daee70c3a2ade5f4ab3c8996364e030a26c0b1d40d7cd03b43d609e2d9b097f
7
+ data.tar.gz: de657ebb88d2f30d9fb906100f5f2bb5d01b264193f9f317f82a2698dd42e97bb7a0561e3bf2e00e287d85bd8547daff28105db3bc8a0afbf9bce3035a7053bf
data/bin/setup CHANGED
@@ -11,4 +11,3 @@ bundle install
11
11
  # Add binstubs to PATH in ~/.zshenv like this:
12
12
  # export PATH=".git/safe/../../bin:$PATH"
13
13
  mkdir -p .git/safe
14
- mkdir -p tmp/pids
@@ -2,5 +2,5 @@
2
2
  module Kratos
3
3
  RAILS_VERSION = '~> 4.2.0'.freeze
4
4
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
5
- VERSION = '1.0.0'.freeze
5
+ VERSION = '1.0.1'.freeze
6
6
  end
data/templates/bin_setup CHANGED
@@ -19,6 +19,7 @@ bin/rake dev:prime
19
19
 
20
20
  # Add binstubs to PATH via export PATH=".git/safe/../../bin:$PATH" in ~/.zshenv
21
21
  mkdir -p .git/safe
22
+ mkdir -p tmp/pids
22
23
 
23
24
  # Only if this isn't CI
24
25
  # if [ -z "$CI" ]; then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kratos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jaisonerick
@@ -50,13 +50,10 @@ extra_rdoc_files:
50
50
  files:
51
51
  - ".gitignore"
52
52
  - ".ruby-version"
53
- - ".travis.yml"
54
53
  - Gemfile
55
54
  - LICENSE
56
55
  - README.md
57
56
  - bin/kratos
58
- - bin/rake
59
- - bin/rspec
60
57
  - bin/setup
61
58
  - kratos.gemspec
62
59
  - lib/kratos.rb
data/.travis.yml DELETED
@@ -1,11 +0,0 @@
1
- language: ruby
2
- rvm: 2.3.0
3
- cache: bundler
4
- sudo: false
5
- before_install:
6
- - "echo '--colour' > ~/.rspec"
7
- - git config --global user.name 'Travis CI'
8
- - git config --global user.email 'travis-ci@example.com'
9
- install: bundle install
10
- notifications:
11
- email: false
data/bin/rake DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rake' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rake', 'rake')
data/bin/rspec DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rspec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rspec-core', 'rspec')