wrench 0.0.1 → 0.0.2

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: a0cd90f455d01fcab1d20e318a1eab5b87550544
4
+ data.tar.gz: 1c8a4a5df83c6a2222d32ec171888ac887c0def4
5
+ SHA512:
6
+ metadata.gz: e964b7b11baf46a792b4080f57989fba526e16c29b2c19c21ddc6dfa8c7ed4e0b68d6498826a0c42cc13c3020c0f7cc57c0e834a08e8c12ef2bae4ca41439b20
7
+ data.tar.gz: 814ffe1c5cf6c5eb71c185b260e8c6631c312dc019a027ad679410a34c56594e337f55748a798443b62ae20c196da62541eaff392e12bb7019f2ee2b99545cc8
data/Gemfile CHANGED
@@ -5,5 +5,5 @@ gemspec
5
5
 
6
6
  gem "colorize"
7
7
  gem "thor"
8
- gem "zip"
8
+ gem "rubyzip"
9
9
 
data/README.md CHANGED
@@ -1,5 +1,56 @@
1
- wrench
2
- ======
1
+ #wrench
3
2
 
4
- tool for ruby web development
3
+ a tool for ruby web development
4
+
5
+ ## features
6
+
7
+ * create skeleton app for ruby web development
8
+ * download assets such as bootstrap, jqueryui, glyphicons
9
+ * add new assets
10
+ * extensible templates
11
+
12
+ ## requirements
13
+
14
+ * bundler
15
+ * colorize
16
+ * thor
17
+ * zip
18
+
19
+ ## installation
20
+
21
+ ### gem package
22
+
23
+ 1. install gem from rubygems
24
+ ```gem install wrench-0.0.1.gem```
25
+
26
+ ### from source
27
+
28
+ 1. clone the repository
29
+ ```git clone git@github.com:stephenhu/wrench```
30
+ 2. install dependencies
31
+ ```bundle install # from the wrench directory```
32
+ 3. build the gem
33
+ ```gem build wrench.gemspec # from the wrench directory```
34
+ 4. install the local gem
35
+ ```gem install wrench-0.0.1.gem```
36
+
37
+ ## faq
38
+
39
+ 1. how do i customize wrench?
40
+ ```inside of the wrench/conf/config.yaml file, you can add assets, customize
41
+ the project structure, and add/remove templates. template files are found in
42
+ wrench/lib/wrench/templates and stored as erbs. at this point a wrench
43
+ gem will need to be rebuilt or the local wrench gem repository will need to
44
+ be modified for any customization. there are plans to provide wrench
45
+ customization without having to modify the core source and rebuild gems in
46
+ the next iteration.```
47
+ 2. why wrench, doesn't rails essentially do the same thing?
48
+ ```rails, bundler, and many other projects also help to create skeletal apps
49
+ for easier and DRYer development. while these are great tools, i needed
50
+ something simpler and more flexible which is how wrench came to be.```
51
+
52
+ ## feature requests
53
+
54
+ * i'd love to hear your feedback so for all feature requests, please either
55
+ create a github issue or send mail to <epynonymous@outlook.com>.
5
56
 
data/conf/config.yaml CHANGED
@@ -3,6 +3,8 @@ assets:
3
3
  url: http://twitter.github.com/bootstrap/assets/bootstrap.zip
4
4
  - name: jqueryui
5
5
  url: https://github.com/jquery/jquery-ui/archive/master.zip
6
+ - name: glyphicons
7
+ url: http://glyphicons.com/files/glyphicons_free.zip
6
8
  directories:
7
9
  - conf
8
10
  - docs
data/docs/backlog CHANGED
@@ -1,3 +1,8 @@
1
- - jquery ui
2
- - optional flag for gems
1
+ todo:
2
+ - provide a local config file in addition to the wrench config file
3
+ - provide a local template repository and template parameters
4
+ - bz2, gz support
5
+ - support for things like prettify which has a dynamic link
3
6
 
7
+ closed:
8
+ - jquery ui
@@ -1,3 +1,3 @@
1
1
  module Wrench
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/wrench.gemspec CHANGED
@@ -2,10 +2,12 @@
2
2
  require File.expand_path('../lib/wrench/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
- gem.authors = ["stephenhu"]
5
+
6
+ gem.authors = ["stephen hu"]
6
7
  gem.email = ["epynonymous@outlook.com"]
7
8
  gem.license = "MIT"
8
- gem.description = %q{tool for ruby web development}
9
+ gem.date = "2013-03-02"
10
+ gem.description = %q{a tool for ruby web development}
9
11
  gem.summary = %q{command line tool for ruby web development}
10
12
  gem.homepage = "http://github.com/stephenhu/wrench"
11
13
 
@@ -16,5 +18,10 @@ Gem::Specification.new do |gem|
16
18
  gem.name = "wrench"
17
19
  gem.require_paths = ["lib"]
18
20
  gem.version = Wrench::VERSION
21
+
22
+ gem.add_runtime_dependency( "colorize", "~> 0.5.8" )
23
+ gem.add_runtime_dependency( "thor", "~> 0.17.0" )
24
+ gem.add_runtime_dependency( "zip", "~> 2.0.2" )
25
+
19
26
  end
20
27
 
metadata CHANGED
@@ -1,17 +1,58 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wrench
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.0.2
6
5
  platform: ruby
7
6
  authors:
8
- - stephenhu
7
+ - stephen hu
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-03-01 00:00:00.000000000 Z
13
- dependencies: []
14
- description: tool for ruby web development
11
+ date: 2013-03-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: colorize
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.5.8
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.5.8
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 0.17.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 0.17.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: zip
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 2.0.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 2.0.2
55
+ description: a tool for ruby web development
15
56
  email:
16
57
  - epynonymous@outlook.com
17
58
  executables:
@@ -39,26 +80,25 @@ files:
39
80
  homepage: http://github.com/stephenhu/wrench
40
81
  licenses:
41
82
  - MIT
83
+ metadata: {}
42
84
  post_install_message:
43
85
  rdoc_options: []
44
86
  require_paths:
45
87
  - lib
46
88
  required_ruby_version: !ruby/object:Gem::Requirement
47
- none: false
48
89
  requirements:
49
90
  - - ! '>='
50
91
  - !ruby/object:Gem::Version
51
92
  version: '0'
52
93
  required_rubygems_version: !ruby/object:Gem::Requirement
53
- none: false
54
94
  requirements:
55
95
  - - ! '>='
56
96
  - !ruby/object:Gem::Version
57
97
  version: '0'
58
98
  requirements: []
59
99
  rubyforge_project:
60
- rubygems_version: 1.8.23
100
+ rubygems_version: 2.0.0
61
101
  signing_key:
62
- specification_version: 3
102
+ specification_version: 4
63
103
  summary: command line tool for ruby web development
64
104
  test_files: []