sinbad 0.0.1 → 0.0.2

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/bin/sinbad +7 -1
  3. data/sinbad.gemspec +1 -1
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/bin/sinbad CHANGED
@@ -4,19 +4,25 @@ require 'fileutils'
4
4
 
5
5
  def create_directories(root_directory)
6
6
  Dir::mkdir(root_directory)
7
- puts "Created #{root_directory}"
7
+ puts "Created project \"#{root_directory}\"\n"
8
8
 
9
9
  Dir::mkdir(root_directory + "/config")
10
+ puts "\tconfig/"
10
11
 
11
12
  Dir::mkdir(root_directory + "/public")
13
+ puts "\tpublic/"
12
14
 
13
15
  Dir::mkdir(root_directory + "/public/images")
16
+ puts "\t'-images/"
14
17
 
15
18
  Dir::mkdir(root_directory + "/public/javascripts")
19
+ puts "\t'-javascripts/"
16
20
 
17
21
  Dir::mkdir(root_directory + "/public/stylesheets")
22
+ puts "\t'-stylesheets/"
18
23
 
19
24
  Dir::mkdir(root_directory + "/views")
25
+ puts "\tviews/"
20
26
  end
21
27
  OptionParser.new do |options|
22
28
  options.banner = "Usage: #{File.basename($0)} [path]"
data/sinbad.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sinbad}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Lee Turner}]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinbad
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lee Turner