kazan 0.2.2 → 0.2.3

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: 92a09a82f5c5171eaa603476f36bd52dccb0e2bf
4
- data.tar.gz: 7f75e22fa996c23e02264eda3b3ecc560091c12d
3
+ metadata.gz: d4e1c64585aa8a6ae274334577402866c8a29842
4
+ data.tar.gz: f2b6856c296f0a99a207946a183d7e24903630ac
5
5
  SHA512:
6
- metadata.gz: ecaee3fd71efd1412b65f6ae2a49ee4a0775442d3134a1850673ff6bd21c1e1cedffc7ed03712b1369f608520cab625cf2c24d9b4f71177b37929ea2ded3a5c3
7
- data.tar.gz: c4d07628c166eead5b18cc9efd205591c3c581e7823893324de97c9d5f439ca5a80652c5fba3367c9300fdd7eadcef2d72da0a24dba7ba70cb1875ac76c1b91f
6
+ metadata.gz: 0ab0718414346c8259e4982b6f22b845e570c60e66baa8ac0b20af24f397aa1a8274a49a8c41b19590c155ed55bd45b340c2a64185bcbc1d0b502efb606d3ed7
7
+ data.tar.gz: 1fa1418f214ddaffe8fba85287ed7c91b211ec167e133da92e47e2251b624c48876a2f21ec2141bd5ea4427a759a0d7eaed75ca9cabbd8b34476fb8c06302b2e
@@ -7,7 +7,7 @@ module Kazan
7
7
  end
8
8
 
9
9
  def gitignore
10
- copy_file 'gitignore', '.gitignore'
10
+ copy_file 'project_gitignore', '.gitignore', force: true
11
11
  end
12
12
 
13
13
  def gemfile
data/lib/kazan/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Kazan
2
- VERSION = '0.2.2'.freeze
2
+ VERSION = '0.2.3'.freeze
3
3
  RAILS_VERSION = '~> 5.0.0'.freeze
4
4
  RUBY_PROJECT_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip.freeze
5
5
  end
@@ -5,6 +5,7 @@
5
5
  /.bundle
6
6
  /.env.production
7
7
  /.env.development
8
+ /config/database.yml
8
9
  /coverage/*
9
10
  /db/*.sqlite3
10
11
  /log/*
@@ -1,6 +1,6 @@
1
1
  if ENV.fetch("RACK_MINI_PROFILER", 0).to_i > 0
2
2
  # Before uncomment read https://github.com/MiniProfiler/rack-mini-profiler#rails-and-manual-initialization
3
- require 'rack_mini_profiler'
3
+ require 'rack-mini-profiler'
4
4
 
5
5
  Rack::MiniProfilerRails.initialize!(Rails.application)
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kazan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marat Khusnetdinov
@@ -120,9 +120,9 @@ files:
120
120
  - templates/errors.rb
121
121
  - templates/factory_girl.rb
122
122
  - templates/flashes_helper.rb
123
- - templates/gitignore
124
123
  - templates/i18n.rb
125
124
  - templates/json_encoding.rb
125
+ - templates/project_gitignore
126
126
  - templates/puma.rb
127
127
  - templates/rack_mini_profiler.rb
128
128
  - templates/rails_helper.rb