cog 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/API.rdoc CHANGED
@@ -11,7 +11,7 @@ project's file tree. The +Cogfile+ is just a ruby file and the commands
11
11
  available in it are defined in the Cog::Cogfile class. It is generated for you
12
12
  when you issue this command from a shell in the root directory of your project:
13
13
 
14
- cog project
14
+ cog init
15
15
 
16
16
  and it will look something like this:
17
17
 
File without changes
File without changes
data/lib/cog/cogfile.rb CHANGED
@@ -8,12 +8,12 @@ module Cog
8
8
 
9
9
  # Path to the master +Cogfile+.
10
10
  def self.master_cogfile_path
11
- File.join File.dirname($0), '../Master.cogfile'
11
+ File.join File.dirname($0), 'cog_assets/Master.cogfile'
12
12
  end
13
13
 
14
14
  # Path to the default +Cogfile+.
15
15
  def self.default_cogfile_path
16
- File.join File.dirname($0), '../templates/Default.cogfile'
16
+ File.join File.dirname($0), 'cog_assets/Default.cogfile'
17
17
  end
18
18
 
19
19
  # Loads the default +Cogfile+ for the current project.
data/lib/cog_version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Cog
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cog
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kevin Tonon
@@ -54,9 +54,9 @@ extensions: []
54
54
  extra_rdoc_files:
55
55
  - API.rdoc
56
56
  files:
57
- - Master.cogfile
58
57
  - bin/cog
59
- - templates/Default.cogfile
58
+ - bin/cog_assets/Default.cogfile
59
+ - bin/cog_assets/Master.cogfile
60
60
  - lib/cog/cogfile.rb
61
61
  - lib/cog/mixins/uses_templates.rb
62
62
  - lib/cog/mixins.rb