spout 0.4.0 → 0.4.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: bf300e017bb3058f395e3a7cdb2d406785a8b9dc
4
- data.tar.gz: 03cb1f860c4d2d176ce7b49fd1fecb89ca76c225
3
+ metadata.gz: 2fc153d6a98113f7275ab271795063c1357438a0
4
+ data.tar.gz: b9ee7b4ee4fc7c53a6dfb93cb7be5723e519f091
5
5
  SHA512:
6
- metadata.gz: e09f48fa3ebf3a965a1481cfb09b12947a4229b89a03d9282e867332bfcd5a3f6e867cf8cc726217d63d22ea5eef1cce08e7fc6600d2b2be81bd4e14af21a168
7
- data.tar.gz: 94d74bf35c10f47f9b463c1f020b613ec8d88fbc4c82edeb01ce3552c2cdeccca6727ea51829ae09d7ffacd778eca834570f26f02d1eea64e43c6e57a61098cc
6
+ metadata.gz: f900b334e9533ed0045d9dedfc2b3600ae0282890cb8b35d5f83e7e044b0c82ee24bb0623b3a2f76998a66810a9bd1fa4d5f08c5ab78e5cb337a52f56ef5d81d
7
+ data.tar.gz: eab6616bae9014cf310b375f8743932fcd4a5b08b5e04a0602e1346ec57db7f7e4e457f53034f40e2859300384ee999b01b077685d4f478487bfdcacd7085304
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.4.1 (August 16, 2013)
2
+
3
+ ### Enhancement
4
+ - The `spout new <project_name>` command now adds .keep files to the variables and domains folders so they don't need to be recreated in a cloned empty repository
5
+
1
6
  ## 0.4.0 (August 7, 2013)
2
7
 
3
8
  ### Enhancements
data/lib/spout/actions.rb CHANGED
@@ -101,7 +101,9 @@ EOT
101
101
  copy_file 'Gemfile'
102
102
  copy_file 'Rakefile'
103
103
  directory 'domains'
104
+ copy_file 'keep', 'domains/.keep'
104
105
  directory 'variables'
106
+ copy_file 'keep', 'variables/.keep'
105
107
  directory 'test'
106
108
  copy_file 'test/dictionary_test.rb'
107
109
  copy_file 'test/test_helper.rb'
File without changes
data/lib/spout/version.rb CHANGED
@@ -2,7 +2,7 @@ module Spout
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 0
5
+ TINY = 1
6
6
  BUILD = nil # nil, "pre", "rc", "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Remo Mueller
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-07 00:00:00.000000000 Z
11
+ date: 2013-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -97,6 +97,7 @@ files:
97
97
  - lib/spout/tasks.rb
98
98
  - lib/spout/templates/Gemfile
99
99
  - lib/spout/templates/gitignore
100
+ - lib/spout/templates/keep
100
101
  - lib/spout/templates/Rakefile
101
102
  - lib/spout/templates/ruby-version
102
103
  - lib/spout/templates/test/dictionary_test.rb