grund 0.1.pre

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/bin/grund +5 -0
  2. data/lib/grund.rb +5 -0
  3. data/lib/grund/generator.rb +12 -0
  4. metadata +50 -0
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'grund'
4
+
5
+ Grund::Generator.new(ARGV).run
@@ -0,0 +1,5 @@
1
+ module Grund
2
+ VERSION = "0.1.pre"
3
+ end
4
+
5
+ require 'grund/generator'
@@ -0,0 +1,12 @@
1
+ module Grund
2
+ class Generator
3
+
4
+ def initialize(args = nil)
5
+
6
+ end
7
+
8
+ def run
9
+ puts "Running .. !"
10
+ end
11
+ end
12
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: grund
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.pre
5
+ prerelease: 4
6
+ platform: ruby
7
+ authors:
8
+ - Johan Brook
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-06-17 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Grund ('foundation' in Swedish) generates a couple of SCSS files to start
15
+ off a new project with.
16
+ email: johan@johanbrook.com
17
+ executables:
18
+ - grund
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - lib/grund.rb
23
+ - lib/grund/generator.rb
24
+ - bin/grund
25
+ homepage: http://johanbrook.com
26
+ licenses:
27
+ - MIT
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>'
42
+ - !ruby/object:Gem::Version
43
+ version: 1.3.1
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 1.8.24
47
+ signing_key:
48
+ specification_version: 3
49
+ summary: A SCSS foundation generator
50
+ test_files: []