gunnertechnology 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/README +0 -0
- data/Rakefile +2 -0
- data/gunnertechnology.gemspec +28 -0
- data/lib/generators/project/USAGE +8 -0
- data/lib/generators/project/project_generator.rb +61 -0
- data/lib/generators/project/templates/app/controllers/authentications_controller.rb +85 -0
- data/lib/generators/project/templates/app/models/authentication.rb +17 -0
- data/lib/generators/project/templates/app/views/layouts/application.html.erb +77 -0
- data/lib/generators/project/templates/app/views/shared/_facebook_init.html.erb +12 -0
- data/lib/generators/project/templates/app/views/shared/_flash_messages.html.erb +7 -0
- data/lib/generators/project/templates/app/views/shared/_footer.html.erb +15 -0
- data/lib/generators/project/templates/app/views/shared/_google_analytics.html.erb +11 -0
- data/lib/generators/project/templates/app/views/shared/_header.html.erb +23 -0
- data/lib/generators/project/templates/config/facebook_config.yml +29 -0
- data/lib/generators/project/templates/config/google_analytics_config.yml +8 -0
- data/lib/generators/project/templates/config/initializers/load_facebook_config.rb +2 -0
- data/lib/generators/project/templates/config/initializers/load_google_analytics_config.rb +2 -0
- data/lib/generators/project/templates/config/initializers/load_seo_config.rb +2 -0
- data/lib/generators/project/templates/config/initializers/omniauth.rb +91 -0
- data/lib/generators/project/templates/config/providers.yml +27 -0
- data/lib/generators/project/templates/config/seo_config.yml +8 -0
- data/lib/generators/project/templates/db/create_authentications.rb +21 -0
- data/lib/generators/project/templates/public/javascripts/libs/PIE.htc +73 -0
- data/lib/generators/project/templates/public/javascripts/libs/colorpicker.js +484 -0
- data/lib/generators/project/templates/public/javascripts/libs/dd_belatedpng.js +13 -0
- data/lib/generators/project/templates/public/javascripts/libs/eye.js +34 -0
- data/lib/generators/project/templates/public/javascripts/libs/head.js +8 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-en.js +130 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-es.js +124 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-fr.js +119 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-it.js +103 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-pt.js +125 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-ro.js +126 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine.js +1137 -0
- data/lib/generators/project/templates/public/javascripts/libs/layout.js +67 -0
- data/lib/generators/project/templates/public/javascripts/libs/modernizr-1.6.min.js +30 -0
- data/lib/generators/project/templates/public/javascripts/libs/utils.js +252 -0
- data/lib/generators/project/templates/public/javascripts/mylibs/.gitignore +3 -0
- data/lib/generators/project/templates/public/javascripts/plugins.js +38 -0
- data/lib/generators/project/templates/public/javascripts/profiling/config.js +59 -0
- data/lib/generators/project/templates/public/javascripts/profiling/yahoo-profiling.min.js +39 -0
- data/lib/generators/project/templates/public/javascripts/script.js +46 -0
- data/lib/generators/project/templates/public/stylesheets/grids/1008_24_10_10.css +201 -0
- data/lib/generators/project/templates/public/stylesheets/grids/fluid.css +320 -0
- data/lib/generators/project/templates/public/stylesheets/handheld.css +8 -0
- data/lib/generators/project/templates/public/stylesheets/profiling/yahoo-profiling.css +7 -0
- data/lib/generators/project/templates/public/stylesheets/reset.css +53 -0
- data/lib/generators/project/templates/public/stylesheets/text.css +84 -0
- data/lib/generators/project/templates/public/stylesheets/validationEngine.jquery.css +142 -0
- data/lib/generators/project/templates/public/swfs/charts.swf +0 -0
- data/lib/gunnertechnology/version.rb +3 -0
- data/lib/gunnertechnology.rb +47 -0
- metadata +206 -0
metadata
ADDED
@@ -0,0 +1,206 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gunnertechnology
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Cody Swann
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-02-16 00:00:00 -08:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rails
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 3
|
30
|
+
- 0
|
31
|
+
version: "3.0"
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: jquery-rails
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ~>
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
segments:
|
43
|
+
- 0
|
44
|
+
- 2
|
45
|
+
- 6
|
46
|
+
version: 0.2.6
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id002
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: devise
|
51
|
+
prerelease: false
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ~>
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
segments:
|
58
|
+
- 1
|
59
|
+
- 1
|
60
|
+
- 5
|
61
|
+
version: 1.1.5
|
62
|
+
type: :runtime
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: omniauth
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ~>
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
- 1
|
75
|
+
- 6
|
76
|
+
version: 0.1.6
|
77
|
+
type: :runtime
|
78
|
+
version_requirements: *id004
|
79
|
+
- !ruby/object:Gem::Dependency
|
80
|
+
name: simple_form
|
81
|
+
prerelease: false
|
82
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ~>
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
segments:
|
88
|
+
- 1
|
89
|
+
- 3
|
90
|
+
- 0
|
91
|
+
version: 1.3.0
|
92
|
+
type: :runtime
|
93
|
+
version_requirements: *id005
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: nifty-generators
|
96
|
+
prerelease: false
|
97
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ~>
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
segments:
|
103
|
+
- 0
|
104
|
+
- 4
|
105
|
+
- 2
|
106
|
+
version: 0.4.2
|
107
|
+
type: :development
|
108
|
+
version_requirements: *id006
|
109
|
+
description: The Gunner Technology gem contains much of the functionality we use from Rails project to Rails Project
|
110
|
+
email:
|
111
|
+
- developers@gunnertech.com
|
112
|
+
executables: []
|
113
|
+
|
114
|
+
extensions: []
|
115
|
+
|
116
|
+
extra_rdoc_files: []
|
117
|
+
|
118
|
+
files:
|
119
|
+
- .gitignore
|
120
|
+
- Gemfile
|
121
|
+
- README
|
122
|
+
- Rakefile
|
123
|
+
- gunnertechnology.gemspec
|
124
|
+
- lib/generators/project/USAGE
|
125
|
+
- lib/generators/project/project_generator.rb
|
126
|
+
- lib/generators/project/templates/app/controllers/authentications_controller.rb
|
127
|
+
- lib/generators/project/templates/app/models/authentication.rb
|
128
|
+
- lib/generators/project/templates/app/views/layouts/application.html.erb
|
129
|
+
- lib/generators/project/templates/app/views/shared/_facebook_init.html.erb
|
130
|
+
- lib/generators/project/templates/app/views/shared/_flash_messages.html.erb
|
131
|
+
- lib/generators/project/templates/app/views/shared/_footer.html.erb
|
132
|
+
- lib/generators/project/templates/app/views/shared/_google_analytics.html.erb
|
133
|
+
- lib/generators/project/templates/app/views/shared/_header.html.erb
|
134
|
+
- lib/generators/project/templates/config/facebook_config.yml
|
135
|
+
- lib/generators/project/templates/config/google_analytics_config.yml
|
136
|
+
- lib/generators/project/templates/config/initializers/load_facebook_config.rb
|
137
|
+
- lib/generators/project/templates/config/initializers/load_google_analytics_config.rb
|
138
|
+
- lib/generators/project/templates/config/initializers/load_seo_config.rb
|
139
|
+
- lib/generators/project/templates/config/initializers/omniauth.rb
|
140
|
+
- lib/generators/project/templates/config/providers.yml
|
141
|
+
- lib/generators/project/templates/config/seo_config.yml
|
142
|
+
- lib/generators/project/templates/db/create_authentications.rb
|
143
|
+
- lib/generators/project/templates/public/javascripts/libs/PIE.htc
|
144
|
+
- lib/generators/project/templates/public/javascripts/libs/colorpicker.js
|
145
|
+
- lib/generators/project/templates/public/javascripts/libs/dd_belatedpng.js
|
146
|
+
- lib/generators/project/templates/public/javascripts/libs/eye.js
|
147
|
+
- lib/generators/project/templates/public/javascripts/libs/head.js
|
148
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-en.js
|
149
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-es.js
|
150
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-fr.js
|
151
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-it.js
|
152
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-pt.js
|
153
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-ro.js
|
154
|
+
- lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine.js
|
155
|
+
- lib/generators/project/templates/public/javascripts/libs/layout.js
|
156
|
+
- lib/generators/project/templates/public/javascripts/libs/modernizr-1.6.min.js
|
157
|
+
- lib/generators/project/templates/public/javascripts/libs/utils.js
|
158
|
+
- lib/generators/project/templates/public/javascripts/mylibs/.gitignore
|
159
|
+
- lib/generators/project/templates/public/javascripts/plugins.js
|
160
|
+
- lib/generators/project/templates/public/javascripts/profiling/config.js
|
161
|
+
- lib/generators/project/templates/public/javascripts/profiling/yahoo-profiling.min.js
|
162
|
+
- lib/generators/project/templates/public/javascripts/script.js
|
163
|
+
- lib/generators/project/templates/public/stylesheets/grids/1008_24_10_10.css
|
164
|
+
- lib/generators/project/templates/public/stylesheets/grids/fluid.css
|
165
|
+
- lib/generators/project/templates/public/stylesheets/handheld.css
|
166
|
+
- lib/generators/project/templates/public/stylesheets/profiling/yahoo-profiling.css
|
167
|
+
- lib/generators/project/templates/public/stylesheets/reset.css
|
168
|
+
- lib/generators/project/templates/public/stylesheets/text.css
|
169
|
+
- lib/generators/project/templates/public/stylesheets/validationEngine.jquery.css
|
170
|
+
- lib/generators/project/templates/public/swfs/charts.swf
|
171
|
+
- lib/gunnertechnology.rb
|
172
|
+
- lib/gunnertechnology/version.rb
|
173
|
+
has_rdoc: true
|
174
|
+
homepage: ""
|
175
|
+
licenses: []
|
176
|
+
|
177
|
+
post_install_message:
|
178
|
+
rdoc_options: []
|
179
|
+
|
180
|
+
require_paths:
|
181
|
+
- lib
|
182
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
183
|
+
none: false
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
segments:
|
188
|
+
- 0
|
189
|
+
version: "0"
|
190
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
|
+
none: false
|
192
|
+
requirements:
|
193
|
+
- - ">="
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
segments:
|
196
|
+
- 0
|
197
|
+
version: "0"
|
198
|
+
requirements: []
|
199
|
+
|
200
|
+
rubyforge_project: gunnertechnology
|
201
|
+
rubygems_version: 1.3.7
|
202
|
+
signing_key:
|
203
|
+
specification_version: 3
|
204
|
+
summary: GT Functionality Packaged as a Gem for Easy Reuse
|
205
|
+
test_files: []
|
206
|
+
|