scaffoldish 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2ba3a6526acca78f0a10c197d50b9020cfb0f6e3
4
+ data.tar.gz: 3af7bec1a1e7b427a062583d2fe3ba689ed4a706
5
+ SHA512:
6
+ metadata.gz: 943dedc6201fdcce14afff7a827f95b6a2ed31bc862d56b36ae9ddceeda500f74b555da5556d46f036de1d1d3422083c7192a794376e87a483c303c8ed193bbb
7
+ data.tar.gz: 7ca344511d64848f5d91fd1580e390251d21c51c51b42c0cbca40e408b6dc0cb62fd02f29eaa313be1ec4f3e8d6ef04676cd47b9dec1fa28c0268d7b9d362745
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Thomas DE BONA
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # Scaffolder-ish
2
+
3
+ *Universal scaffolder super powa for everyone!*
4
+
5
+ **Under high development... Be careful!**
6
+
7
+ Brings Rails-ish scaffolding super powa for every developpers, no matter they don't code with blessed RoR.
data/bin/scaffoldish ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'scaffoldish'
4
+
5
+ # TODO include the logger method?
6
+
7
+ Scaffoldish::Application.instance.run(*ARGV)
@@ -0,0 +1,25 @@
1
+ require 'singleton'
2
+ require 'logger'
3
+
4
+ module Scaffoldish
5
+
6
+ class Application
7
+
8
+ include Singleton
9
+
10
+ attr_reader :logger
11
+
12
+ def initialize
13
+ @logger = Logger.new(STDERR) # TODO: make a module with that
14
+ @logger.level = Logger::WARN
15
+ end
16
+
17
+ def run(command_file, *parameters)
18
+ puts "Hello world, I'm scaffoldish!"
19
+ rescue Exception => e
20
+ logger.error e
21
+ end
22
+
23
+ end
24
+
25
+ end
@@ -0,0 +1,2 @@
1
+
2
+ require 'scaffoldish/application'
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: scaffoldish
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Thomas DE BONA
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-21 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Brings Rails-ish scaffolding super powa for every developpers, no matter
14
+ they don't code with blessed RoR.
15
+ email: thomas.debona@gmail.com
16
+ executables:
17
+ - scaffoldish
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE.md
22
+ - README.md
23
+ - bin/scaffoldish
24
+ - lib/scaffoldish.rb
25
+ - lib/scaffoldish/application.rb
26
+ homepage: http://rubygems.org/gems/scaffold-ish
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.2.2
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Universal scaffolder super powa for everyone!
50
+ test_files: []