wheels 0.0.4 → 0.0.5
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/send_new_version +6 -0
- data/wheels.gemspec +185 -0
- metadata +5 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/send_new_version
ADDED
data/wheels.gemspec
ADDED
@@ -0,0 +1,185 @@
|
|
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{wheels}
|
8
|
+
s.version = "0.0.5"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Tyler Gannon"]
|
12
|
+
s.date = %q{2010-08-09}
|
13
|
+
s.description = %q{Call rails generate wheels.}
|
14
|
+
s.email = %q{tgannon@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"app/controllers/application_controller.rb",
|
27
|
+
"app/controllers/blogs_controller.rb",
|
28
|
+
"app/controllers/galleries_controller.rb",
|
29
|
+
"app/controllers/images_controller.rb",
|
30
|
+
"app/controllers/profiles_controller.rb",
|
31
|
+
"app/controllers/users_controller.rb",
|
32
|
+
"app/models/ability.rb",
|
33
|
+
"app/models/blog.rb",
|
34
|
+
"app/models/gallery.rb",
|
35
|
+
"app/models/image.rb",
|
36
|
+
"app/models/profile.rb",
|
37
|
+
"app/models/role.rb",
|
38
|
+
"app/models/user.rb",
|
39
|
+
"app/views/blogs/_form.html.haml",
|
40
|
+
"app/views/blogs/edit.html.haml",
|
41
|
+
"app/views/blogs/index.html.haml",
|
42
|
+
"app/views/blogs/index.xml.builder",
|
43
|
+
"app/views/blogs/new.html.haml",
|
44
|
+
"app/views/blogs/show.html.haml",
|
45
|
+
"app/views/galleries/_form.html.haml",
|
46
|
+
"app/views/galleries/_show.html.haml",
|
47
|
+
"app/views/galleries/edit.html.haml",
|
48
|
+
"app/views/galleries/index.html.haml",
|
49
|
+
"app/views/galleries/new.html.haml",
|
50
|
+
"app/views/galleries/show.html.haml",
|
51
|
+
"app/views/images/_form.html.haml",
|
52
|
+
"app/views/images/create.js.haml",
|
53
|
+
"app/views/images/destroy.js.haml",
|
54
|
+
"app/views/images/edit.html.haml",
|
55
|
+
"app/views/images/edit.js.haml",
|
56
|
+
"app/views/images/index.html.haml",
|
57
|
+
"app/views/images/index.js.haml",
|
58
|
+
"app/views/images/new.html.haml",
|
59
|
+
"app/views/images/new.js.haml",
|
60
|
+
"app/views/images/show.html.haml",
|
61
|
+
"app/views/images/show.js.haml",
|
62
|
+
"app/views/images/update.js.haml",
|
63
|
+
"app/views/layouts/image_dialog.html.haml",
|
64
|
+
"app/views/profiles/_form.html.haml",
|
65
|
+
"app/views/profiles/edit.html.haml",
|
66
|
+
"app/views/profiles/index.html.haml",
|
67
|
+
"app/views/profiles/new.html.haml",
|
68
|
+
"app/views/profiles/show.html.haml",
|
69
|
+
"app/views/users/index.html.haml",
|
70
|
+
"config/amazon_s3.yml",
|
71
|
+
"db/migrate/add_fields_to_users.rb",
|
72
|
+
"db/migrate/create_blogs.rb",
|
73
|
+
"db/migrate/create_galleries.rb",
|
74
|
+
"db/migrate/create_images.rb",
|
75
|
+
"db/migrate/create_profiles.rb",
|
76
|
+
"db/migrate/create_roles.rb",
|
77
|
+
"init.rb",
|
78
|
+
"lib/generators/wheels/LICENCE",
|
79
|
+
"lib/generators/wheels/USAGE",
|
80
|
+
"lib/generators/wheels/core_extensions.rb",
|
81
|
+
"lib/generators/wheels/install_generator.rb",
|
82
|
+
"lib/generators/wheels/recipes/cancan.rb",
|
83
|
+
"lib/generators/wheels/recipes/cucumber.rb",
|
84
|
+
"lib/generators/wheels/recipes/default.rb",
|
85
|
+
"lib/generators/wheels/recipes/design.rb",
|
86
|
+
"lib/generators/wheels/recipes/devise.rb",
|
87
|
+
"lib/generators/wheels/recipes/factory_girl.rb",
|
88
|
+
"lib/generators/wheels/recipes/haml.rb",
|
89
|
+
"lib/generators/wheels/recipes/jquery.rb",
|
90
|
+
"lib/generators/wheels/recipes/mongoid.rb",
|
91
|
+
"lib/generators/wheels/recipes/postgresql.rb",
|
92
|
+
"lib/generators/wheels/recipes/remarkable.rb",
|
93
|
+
"lib/generators/wheels/recipes/rspec.rb",
|
94
|
+
"lib/generators/wheels/recipes/wheels.rb",
|
95
|
+
"lib/generators/wheels/snippets/cucumber/database_config",
|
96
|
+
"lib/generators/wheels/templater.rb",
|
97
|
+
"lib/generators/wheels/templates/cancan/ability.rb",
|
98
|
+
"lib/generators/wheels/templates/database/postgresql.yml",
|
99
|
+
"lib/generators/wheels/templates/git/gitignore",
|
100
|
+
"lib/generators/wheels/templates/haml/app/views/layouts/application.html.haml",
|
101
|
+
"lib/generators/wheels/templates/mongoid/features/step_definitions/mongoid_steps.rb",
|
102
|
+
"lib/generators/wheels/templates/mongoid/features/support/hooks.rb",
|
103
|
+
"lib/generators/wheels/wheels_generator.rb",
|
104
|
+
"lib/wheels.rb",
|
105
|
+
"lib/wheels/routes.rb",
|
106
|
+
"public/404.html",
|
107
|
+
"public/422.html",
|
108
|
+
"public/500.html",
|
109
|
+
"public/favicon.ico",
|
110
|
+
"public/images/dreamy/Thumbs.db",
|
111
|
+
"public/images/dreamy/bg-ad-top.png",
|
112
|
+
"public/images/dreamy/bg-body.png",
|
113
|
+
"public/images/dreamy/bg-feed.gif",
|
114
|
+
"public/images/dreamy/bg-footer.jpg",
|
115
|
+
"public/images/dreamy/bg-header.jpg",
|
116
|
+
"public/images/dreamy/bg-menu-hover.png",
|
117
|
+
"public/images/dreamy/bg-menu.png",
|
118
|
+
"public/images/dreamy/bg-sidebar-bottom.gif",
|
119
|
+
"public/images/dreamy/button-feed.png",
|
120
|
+
"public/images/dreamy/icon-comment.png",
|
121
|
+
"public/images/growl/error.png",
|
122
|
+
"public/images/growl/growl_bottom.png",
|
123
|
+
"public/images/growl/growl_repeat.png",
|
124
|
+
"public/images/growl/growl_top.png",
|
125
|
+
"public/images/growl/info.png",
|
126
|
+
"public/images/menu/item-pointer-mover.gif",
|
127
|
+
"public/images/menu/item-pointer.gif",
|
128
|
+
"public/images/menu/lava.gif",
|
129
|
+
"public/images/menu/lava.png",
|
130
|
+
"public/images/menu/main-bg.png",
|
131
|
+
"public/images/menu/main-delimiter.png",
|
132
|
+
"public/javascripts/jquery.growl.js",
|
133
|
+
"public/javascripts/loadbehind.js",
|
134
|
+
"public/javascripts/menu.js",
|
135
|
+
"public/stylesheets/.gitkeep",
|
136
|
+
"public/stylesheets/dreamy.css",
|
137
|
+
"public/stylesheets/menu.css",
|
138
|
+
"public/stylesheets/sass/dreamy.sass",
|
139
|
+
"public/stylesheets/sass/menu.sass",
|
140
|
+
"public/stylesheets/scaffold.css",
|
141
|
+
"public/stylesheets/ui-lightness/images/ui-anim_basic_16x16.gif",
|
142
|
+
"public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png",
|
143
|
+
"public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png",
|
144
|
+
"public/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png",
|
145
|
+
"public/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png",
|
146
|
+
"public/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png",
|
147
|
+
"public/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png",
|
148
|
+
"public/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png",
|
149
|
+
"public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png",
|
150
|
+
"public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png",
|
151
|
+
"public/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png",
|
152
|
+
"public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png",
|
153
|
+
"public/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png",
|
154
|
+
"public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png",
|
155
|
+
"public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png",
|
156
|
+
"public/stylesheets/ui-lightness/jquery-ui-1.8.2.custom.css",
|
157
|
+
"send_new_version",
|
158
|
+
"test/helper.rb",
|
159
|
+
"test/test_wheels.rb",
|
160
|
+
"wheels.gemspec"
|
161
|
+
]
|
162
|
+
s.homepage = %q{http://github.com/tylergannon/wheels}
|
163
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
164
|
+
s.require_paths = ["lib"]
|
165
|
+
s.rubygems_version = %q{1.3.7}
|
166
|
+
s.summary = %q{Generator builds a web site with blog, user profile, etc.}
|
167
|
+
s.test_files = [
|
168
|
+
"test/test_wheels.rb",
|
169
|
+
"test/helper.rb"
|
170
|
+
]
|
171
|
+
|
172
|
+
if s.respond_to? :specification_version then
|
173
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
174
|
+
s.specification_version = 3
|
175
|
+
|
176
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
177
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
178
|
+
else
|
179
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
180
|
+
end
|
181
|
+
else
|
182
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wheels
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tyler Gannon
|
@@ -179,8 +179,10 @@ files:
|
|
179
179
|
- public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
180
180
|
- public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png
|
181
181
|
- public/stylesheets/ui-lightness/jquery-ui-1.8.2.custom.css
|
182
|
+
- send_new_version
|
182
183
|
- test/helper.rb
|
183
184
|
- test/test_wheels.rb
|
185
|
+
- wheels.gemspec
|
184
186
|
has_rdoc: true
|
185
187
|
homepage: http://github.com/tylergannon/wheels
|
186
188
|
licenses: []
|