shake 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +9 -0
  2. data/bin/shake +12 -0
  3. data/lib/shake.rb +1 -1
  4. metadata +5 -3
data/CHANGELOG ADDED
@@ -0,0 +1,9 @@
1
+ v0.1.1
2
+ ------
3
+
4
+ * FIX: Allow running 'shake' from the command line.
5
+
6
+ v0.1.0
7
+ ------
8
+
9
+ * Initial release.
data/bin/shake ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ $: << File.expand_path('../../lib', __FILE__)
3
+ require 'shake'
4
+
5
+ file = Shake.find_in_project("Shakefile")
6
+
7
+ unless file
8
+ Shake.err "No Shakefile found in your path."
9
+ else
10
+ load file
11
+ Shake.run!
12
+ end
data/lib/shake.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'ostruct'
2
2
 
3
3
  class Shake
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
 
6
6
  Abort = Class.new(StandardError)
7
7
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: shake
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Rico Sta. Cruz
@@ -17,8 +17,8 @@ dependencies: []
17
17
  description: Shake is a simple replacement for Thor/Rake.
18
18
  email:
19
19
  - rico@sinefunc.com
20
- executables: []
21
-
20
+ executables:
21
+ - shake
22
22
  extensions: []
23
23
 
24
24
  extra_rdoc_files: []
@@ -34,7 +34,9 @@ files:
34
34
  - examples/example
35
35
  - examples/example2
36
36
  - README.md
37
+ - CHANGELOG
37
38
  - Rakefile
39
+ - bin/shake
38
40
  has_rdoc: true
39
41
  homepage: http://github.com/rstacruz/shake
40
42
  licenses: []