appmake 0.0.24 → 0.0.25

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,10 +1,6 @@
1
1
  # Appmake
2
2
 
3
- Appmake allows you to easily develop single-page apps in HTML5
4
-
5
- ## Requirements
6
-
7
- Appmake require `node.js` along with `webmake` module installed.
3
+ TODO: Write a gem description
8
4
 
9
5
  ## Installation
10
6
 
@@ -22,7 +18,7 @@ Or install it yourself as:
22
18
 
23
19
  ## Usage
24
20
 
25
- To create your app use `bundle exec appmake init <app name>`. `cd` to created folder and issue `appmake watch` and you're done.
21
+ TODO: Write usage instructions here
26
22
 
27
23
  ## Contributing
28
24
 
data/appmake.gemspec CHANGED
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- lib = File.expand_path('lib', __FILE__)
2
+ lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'appmake/version'
5
5
 
@@ -1,3 +1,3 @@
1
- class Appmake
2
- VERSION = "0.0.24"
1
+ module Appmake
2
+ VERSION = "0.0.25"
3
3
  end
data/lib/appmake.rb CHANGED
@@ -1,37 +1,9 @@
1
- require "thor"
2
1
  require "appmake/version"
3
- require "appmake/listeners/js"
4
2
 
5
- class Appmake < Thor
6
- include Thor::Actions
7
-
8
- def self.source_root
9
- File.dirname(File.dirname(__FILE__))
10
- end
11
-
12
- desc "init", "initialize new application"
13
- def init
14
- empty_directory "bin"
15
- template"templates/bin/compile_templates.js.tt", "bin/compile_templates.js"
16
-
17
- empty_directory "css"
18
- template"templates/css/app.scss.tt", "css/app.scss"
19
- template"templates/css/body.scss.tt", "css/body.scss"
20
-
21
- empty_directory "js"
22
- template"templates/js/lib/doT.js.tt", "js/lib/doT.js"
23
- template"templates/js/app.js.tt", "js/app.js"
24
-
25
- empty_directory "tpl"
26
- template "templates/tpl/welcome.html.tt", "tpl/welcome.html"
27
-
28
- empty_directory "public"
29
- template "templates/public/index.html.tt", "public/index.html"
30
- end
31
-
32
- desc "watch", "watch for files to compile"
33
- def watch
34
- js_listener = Listeners::Js.new
35
- js_listener.start
36
- end
37
- end
3
+ module Appmake
4
+ class Appmake
5
+ def self.foo
6
+ puts "foo"
7
+ end
8
+ end
9
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appmake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 0.0.25
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -78,8 +78,7 @@ dependencies:
78
78
  description: Appmake allows you to easily develop single-page apps in HTML5
79
79
  email:
80
80
  - sebastian@hypenode.com
81
- executables:
82
- - appmake.rb
81
+ executables: []
83
82
  extensions: []
84
83
  extra_rdoc_files: []
85
84
  files:
@@ -89,7 +88,6 @@ files:
89
88
  - README.md
90
89
  - Rakefile
91
90
  - appmake.gemspec
92
- - bin/appmake.rb
93
91
  - lib/appmake.rb
94
92
  - lib/appmake/version.rb
95
93
  homepage: https://github.com/sebastiansito/appmake
data/bin/appmake.rb DELETED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "appmake"
4
-
5
- Appmake.start