gypsum 0.8.0 → 0.9.0
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/LICENSE +1 -1
- data/README +36 -0
- data/README.md +36 -0
- data/lib/gypsum/version.rb +1 -1
- data/templates/default/default.rb +2 -2
- metadata +15 -13
data/LICENSE
CHANGED
data/README
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Gypsum
|
|
2
|
+
===========
|
|
3
|
+
Generate a Rails 3.1 app with We Are Titans' application templates
|
|
4
|
+
|
|
5
|
+
She also asserts that the word "Titan" comes from the Greek τιτανος, signifying white earth, clay or gypsum, and that the Titans were "white clay men", or men covered by white clay or gypsum dust in their rituals.
|
|
6
|
+
|
|
7
|
+
### About Gypsum
|
|
8
|
+
|
|
9
|
+
Gypsum provides a set of templates to generate Rails 3 applications.
|
|
10
|
+
Everything is configured and ready to go on your next Rails 3.1 project.
|
|
11
|
+
|
|
12
|
+
* Default: A base Rails 3.1 application with Devise and Cancan for
|
|
13
|
+
authentication and authorization. Gypsum rolls in many of the things
|
|
14
|
+
we like to have setup in our apps like: haml, jquery, capybara,
|
|
15
|
+
factory_girl, rspec, timecop, autotest, will_paginate, and friendly_id.
|
|
16
|
+
|
|
17
|
+
gypsum new awesome_app
|
|
18
|
+
gypsum new awesome_app default
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Simple Setup
|
|
22
|
+
|
|
23
|
+
gem install gypsum
|
|
24
|
+
|
|
25
|
+
gypsum new awesome_app
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Testing generated default app
|
|
29
|
+
|
|
30
|
+
rake spec
|
|
31
|
+
bundle exec autotest
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Copyright
|
|
35
|
+
|
|
36
|
+
Copyright (c) 2011 We Are Titans
|
data/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Gypsum
|
|
2
|
+
===========
|
|
3
|
+
Generate a Rails 3.1 app with We Are Titans' application templates
|
|
4
|
+
|
|
5
|
+
"She also asserts that the word "Titan" comes from the Greek τιτανος, signifying white earth, clay or gypsum, and that the Titans were "white clay men", or men covered by white clay or gypsum dust in their rituals."
|
|
6
|
+
|
|
7
|
+
### About Gypsum
|
|
8
|
+
|
|
9
|
+
Gypsum provides a set of templates to generate Rails 3 applications.
|
|
10
|
+
Everything is configured and ready to go on your next Rails 3.1 project.
|
|
11
|
+
|
|
12
|
+
* Default: A base Rails 3.1 application with Devise and Cancan for
|
|
13
|
+
authentication and authorization. Gypsum rolls in many of the things
|
|
14
|
+
we like to have setup in our apps like: haml, jquery, capybara,
|
|
15
|
+
factory_girl, rspec, timecop, autotest, will_paginate, and friendly_id.
|
|
16
|
+
|
|
17
|
+
gypsum new awesome_app
|
|
18
|
+
gypsum new awesome_app default
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Simple Setup
|
|
22
|
+
|
|
23
|
+
gem install gypsum
|
|
24
|
+
|
|
25
|
+
gypsum new awesome_app
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Testing generated default app
|
|
29
|
+
|
|
30
|
+
rake spec
|
|
31
|
+
bundle exec autotest
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Copyright
|
|
35
|
+
|
|
36
|
+
Copyright (c) 2011 We Are Titans
|
data/lib/gypsum/version.rb
CHANGED
|
@@ -18,11 +18,11 @@ module Gypsum
|
|
|
18
18
|
private
|
|
19
19
|
|
|
20
20
|
def git_user_name
|
|
21
|
-
`git config --global user.name`.chomp.gsub('"', '\"') || "
|
|
21
|
+
`git config --global user.name`.chomp.gsub('"', '\"') || "We Are Titans"
|
|
22
22
|
end
|
|
23
23
|
|
|
24
24
|
def git_user_email
|
|
25
|
-
`git config --global user.email`.chomp || "
|
|
25
|
+
`git config --global user.email`.chomp || "team@wearetitans.net"
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
def user_password
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gypsum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2011-08-23 00:00:00.000000000Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &2169019240 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - =
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: 3.1.0.rc6
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *2169019240
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: thor
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &2169018760 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ~>
|
|
@@ -32,10 +32,10 @@ dependencies:
|
|
|
32
32
|
version: 0.14.6
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *2169018760
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: rails
|
|
38
|
-
requirement: &
|
|
38
|
+
requirement: &2169018280 !ruby/object:Gem::Requirement
|
|
39
39
|
none: false
|
|
40
40
|
requirements:
|
|
41
41
|
- - =
|
|
@@ -43,10 +43,10 @@ dependencies:
|
|
|
43
43
|
version: 3.1.0.rc6
|
|
44
44
|
type: :runtime
|
|
45
45
|
prerelease: false
|
|
46
|
-
version_requirements: *
|
|
46
|
+
version_requirements: *2169018280
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: bundler
|
|
49
|
-
requirement: &
|
|
49
|
+
requirement: &2169017780 !ruby/object:Gem::Requirement
|
|
50
50
|
none: false
|
|
51
51
|
requirements:
|
|
52
52
|
- - ~>
|
|
@@ -54,10 +54,10 @@ dependencies:
|
|
|
54
54
|
version: 1.0.12
|
|
55
55
|
type: :development
|
|
56
56
|
prerelease: false
|
|
57
|
-
version_requirements: *
|
|
57
|
+
version_requirements: *2169017780
|
|
58
58
|
- !ruby/object:Gem::Dependency
|
|
59
59
|
name: rspec
|
|
60
|
-
requirement: &
|
|
60
|
+
requirement: &2169017260 !ruby/object:Gem::Requirement
|
|
61
61
|
none: false
|
|
62
62
|
requirements:
|
|
63
63
|
- - ~>
|
|
@@ -65,10 +65,10 @@ dependencies:
|
|
|
65
65
|
version: 2.0.0
|
|
66
66
|
type: :development
|
|
67
67
|
prerelease: false
|
|
68
|
-
version_requirements: *
|
|
68
|
+
version_requirements: *2169017260
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: thor
|
|
71
|
-
requirement: &
|
|
71
|
+
requirement: &2169016800 !ruby/object:Gem::Requirement
|
|
72
72
|
none: false
|
|
73
73
|
requirements:
|
|
74
74
|
- - ! '>='
|
|
@@ -76,7 +76,7 @@ dependencies:
|
|
|
76
76
|
version: '0'
|
|
77
77
|
type: :development
|
|
78
78
|
prerelease: false
|
|
79
|
-
version_requirements: *
|
|
79
|
+
version_requirements: *2169016800
|
|
80
80
|
description: Generate a Rails 3.1 app with application templates.
|
|
81
81
|
email:
|
|
82
82
|
- question@wearetitans.net
|
|
@@ -89,6 +89,8 @@ files:
|
|
|
89
89
|
- Gemfile
|
|
90
90
|
- Gemfile.lock
|
|
91
91
|
- LICENSE
|
|
92
|
+
- README
|
|
93
|
+
- README.md
|
|
92
94
|
- Rakefile
|
|
93
95
|
- bin/gypsum
|
|
94
96
|
- gypsum.gemspec
|