chester 0.1.0 → 0.1.1
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.
- data/VERSION +1 -1
- data/chester.gemspec +72 -0
- data/lib/chester/commands/brew.rb +1 -1
- metadata +2 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/chester.gemspec
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{chester}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Tom Wilson"]
|
|
12
|
+
s.date = %q{2010-05-06}
|
|
13
|
+
s.default_executable = %q{chester}
|
|
14
|
+
s.description = %q{This project use coffeescript and MVC to create an awesome framework for the Titanium system!}
|
|
15
|
+
s.email = %q{tom@jackhq.com}
|
|
16
|
+
s.executables = ["chester"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"LICENSE"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
".document",
|
|
22
|
+
".gitignore",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"bin/chester",
|
|
27
|
+
"chester.gemspec",
|
|
28
|
+
"lib/chester.rb",
|
|
29
|
+
"lib/chester/command.rb",
|
|
30
|
+
"lib/chester/commands/base.rb",
|
|
31
|
+
"lib/chester/commands/brew.rb",
|
|
32
|
+
"lib/chester/commands/generate.rb",
|
|
33
|
+
"lib/chester/commands/install.rb",
|
|
34
|
+
"lib/chester/helpers.rb",
|
|
35
|
+
"lib/chester/templates/chester.coffee",
|
|
36
|
+
"lib/chester/templates/controller.coffee.erb",
|
|
37
|
+
"lib/chester/templates/model.coffee.erb",
|
|
38
|
+
"lib/chester/templates/view.coffee.erb",
|
|
39
|
+
"readme.md",
|
|
40
|
+
"spec/chester_spec.rb",
|
|
41
|
+
"spec/spec.opts",
|
|
42
|
+
"spec/spec_helper.rb",
|
|
43
|
+
"views/patient/index.coffee",
|
|
44
|
+
"views/patient/new.coffee"
|
|
45
|
+
]
|
|
46
|
+
s.homepage = %q{http://github.com/twilson63/chester}
|
|
47
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
48
|
+
s.require_paths = ["lib"]
|
|
49
|
+
s.rubygems_version = %q{1.3.5}
|
|
50
|
+
s.summary = %q{MVC for Titanium Developer}
|
|
51
|
+
s.test_files = [
|
|
52
|
+
"spec/chester_spec.rb",
|
|
53
|
+
"spec/spec_helper.rb"
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
if s.respond_to? :specification_version then
|
|
57
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
58
|
+
s.specification_version = 3
|
|
59
|
+
|
|
60
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
61
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
62
|
+
s.add_runtime_dependency(%q<erubis>, [">= 2.6.5"])
|
|
63
|
+
else
|
|
64
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
65
|
+
s.add_dependency(%q<erubis>, [">= 2.6.5"])
|
|
66
|
+
end
|
|
67
|
+
else
|
|
68
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
69
|
+
s.add_dependency(%q<erubis>, [">= 2.6.5"])
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chester
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Wilson
|
|
@@ -47,6 +47,7 @@ files:
|
|
|
47
47
|
- Rakefile
|
|
48
48
|
- VERSION
|
|
49
49
|
- bin/chester
|
|
50
|
+
- chester.gemspec
|
|
50
51
|
- lib/chester.rb
|
|
51
52
|
- lib/chester/command.rb
|
|
52
53
|
- lib/chester/commands/base.rb
|