chlorine 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/chlorine.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{chlorine}
8
- s.version = "0.1.5"
8
+ s.version = "0.1.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Trevor Burnham"]
@@ -2,7 +2,7 @@ module Chlorine
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 5
5
+ PATCH = 6
6
6
  STRING = [MAJOR, MINOR, PATCH].join(".")
7
7
  end
8
8
  end
@@ -3,6 +3,10 @@ module Chlorine
3
3
  class ConfigGenerator < Rails::Generators::Base
4
4
  desc 'Creates a Chlorine configuration file at config/chlorine.yml'
5
5
 
6
+ def self.source_root
7
+ @_chlorine_source_root ||= File.expand_path("../templates", __FILE__)
8
+ end
9
+
6
10
  def create_config_file
7
11
  template 'chlorine.yml', File.join('config', 'chlorine.yml')
8
12
  end
@@ -1,5 +1,11 @@
1
1
  envs: ['development'] # enable only in development mode
2
2
 
3
+ # The contents of any directory specified will be completely erased,
4
+ # except for the excluded root-level files or directories indicated.
5
+ # For instance, commenting out the last two lines causes everything
6
+ # in 'public/javascripts' to be deleted except for the subdirectory
7
+ # 'public/javascripts/lib'.
8
+
3
9
  dirs:
4
10
  # 'tmp':
5
11
  # excludes: []
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 5
9
- version: 0.1.5
8
+ - 6
9
+ version: 0.1.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Trevor Burnham