Commit 836b32e374400c8e4364e3208a4e9bbbedf3e39e
1 parent
e0a7b70d
Exists in
master
and in
1 other branch
updating READMEs
Showing
4 changed files
with
28 additions
and
23 deletions
Show diff stats
1 | ambethia-smtp-tls --version '1.1.2' --source gems.github.com | 1 | ambethia-smtp-tls --version '1.1.2' --source gems.github.com |
2 | tobi-delayed_job --version '1.7.0' --source gems.github.com | 2 | tobi-delayed_job --version '1.7.0' --source gems.github.com |
3 | tristandunn-paperclip --version '2.3.1' --source gems.github.com | 3 | tristandunn-paperclip --version '2.3.1' --source gems.github.com |
4 | +aws-s3 --version '0.6.2' | ||
4 | mime-types --version '1.16' | 5 | mime-types --version '1.16' |
5 | xml-simple --version '1.0.12' | 6 | xml-simple --version '1.0.12' |
6 | -aws-s3 --version '0.6.2' | ||
7 | rubaidh-google_analytics --version '1.1.4' --source gems.github.com | 7 | rubaidh-google_analytics --version '1.1.4' --source gems.github.com |
8 | yfactorial-utility_scopes --version '0.2.2' --source gems.github.com | 8 | yfactorial-utility_scopes --version '0.2.2' --source gems.github.com |
9 | justinfrench-formtastic --version '0.2.1' --source gems.github.com | 9 | justinfrench-formtastic --version '0.2.1' --source gems.github.com |
README.markdown
@@ -17,7 +17,7 @@ This will create a Rails 2.3.2 app with Heroku-recommended code: | @@ -17,7 +17,7 @@ This will create a Rails 2.3.2 app with Heroku-recommended code: | ||
17 | 17 | ||
18 | ... and some other opinions: | 18 | ... and some other opinions: |
19 | 19 | ||
20 | -* jQuery for Javascript | 20 | +* jQuery for Javascript and Ajax |
21 | * Clearance for authentication | 21 | * Clearance for authentication |
22 | * Cucumber, Shoulda, Factory Girl, & Mocha for testing | 22 | * Cucumber, Shoulda, Factory Girl, & Mocha for testing |
23 | * Flutie for CSS framework | 23 | * Flutie for CSS framework |
config/environment.rb
@@ -25,15 +25,15 @@ Rails::Initializer.run do |config| | @@ -25,15 +25,15 @@ Rails::Initializer.run do |config| | ||
25 | :lib => "paperclip", | 25 | :lib => "paperclip", |
26 | :version => "2.3.1", | 26 | :version => "2.3.1", |
27 | :source => "http://gems.github.com" | 27 | :source => "http://gems.github.com" |
28 | + config.gem "aws-s3", | ||
29 | + :lib => "aws/s3", | ||
30 | + :version => "0.6.2" | ||
28 | config.gem "mime-types", | 31 | config.gem "mime-types", |
29 | :lib => "mime/types", | 32 | :lib => "mime/types", |
30 | :version => "1.16" | 33 | :version => "1.16" |
31 | config.gem "xml-simple", | 34 | config.gem "xml-simple", |
32 | :lib => "xmlsimple", | 35 | :lib => "xmlsimple", |
33 | :version => "1.0.12" | 36 | :version => "1.0.12" |
34 | - config.gem "aws-s3", | ||
35 | - :lib => "aws/s3", | ||
36 | - :version => "0.6.2" | ||
37 | config.gem "yfactorial-utility_scopes", | 37 | config.gem "yfactorial-utility_scopes", |
38 | :lib => "utility_scopes", | 38 | :lib => "utility_scopes", |
39 | :version => "0.2.2", | 39 | :version => "0.2.2", |
doc/README_FOR_TEMPLATE
@@ -25,16 +25,24 @@ Suspenders currently runs on Rails 2.3.2. | @@ -25,16 +25,24 @@ Suspenders currently runs on Rails 2.3.2. | ||
25 | Gems (in .gems): | 25 | Gems (in .gems): |
26 | ---------------- | 26 | ---------------- |
27 | 27 | ||
28 | +For file uploads: | ||
29 | + | ||
30 | + thoughtbot-paperclip | ||
31 | + aws-s3 | ||
32 | + | ||
33 | +For authentication: | ||
34 | + | ||
35 | + thoughtbot-clearance | ||
36 | + | ||
28 | For testing: | 37 | For testing: |
29 | 38 | ||
30 | mocha | 39 | mocha |
31 | thoughtbot-factory_girl | 40 | thoughtbot-factory_girl |
32 | thoughtbot-shoulda | 41 | thoughtbot-shoulda |
33 | 42 | ||
34 | -For file uploads: | 43 | +For form builders: |
35 | 44 | ||
36 | - thoughtbot-paperclip | ||
37 | - right_aws | 45 | + justinfrench-formtastic |
38 | 46 | ||
39 | For email through SMTP (particularly Gmail): | 47 | For email through SMTP (particularly Gmail): |
40 | 48 | ||
@@ -47,14 +55,18 @@ For background processing: | @@ -47,14 +55,18 @@ For background processing: | ||
47 | Plugins (in vendor/plugins): | 55 | Plugins (in vendor/plugins): |
48 | ---------------------------- | 56 | ---------------------------- |
49 | 57 | ||
50 | -For authentication: | 58 | +For Javascript and Ajax: |
51 | 59 | ||
52 | - thoughtbot-clearance | 60 | + jQuery |
53 | 61 | ||
54 | For exception notification: | 62 | For exception notification: |
55 | 63 | ||
56 | hoptoad_notifier | 64 | hoptoad_notifier |
57 | 65 | ||
66 | +For CSS framework: | ||
67 | + | ||
68 | + flutie | ||
69 | + | ||
58 | For models, controllers, helpers, & features generators: | 70 | For models, controllers, helpers, & features generators: |
59 | 71 | ||
60 | blitz | 72 | blitz |
@@ -106,25 +118,18 @@ from Joe Ferris that adds test spies (assert_received) to Mocha. | @@ -106,25 +118,18 @@ from Joe Ferris that adds test spies (assert_received) to Mocha. | ||
106 | 118 | ||
107 | jferris-mocha --version '0.9.5.0.1241126838' --source gems.github.com | 119 | jferris-mocha --version '0.9.5.0.1241126838' --source gems.github.com |
108 | 120 | ||
109 | -Javascript | ||
110 | ----------- | ||
111 | - | ||
112 | -jQuery and jRails are included. | ||
113 | - | ||
114 | Styles | 121 | Styles |
115 | ------ | 122 | ------ |
116 | 123 | ||
117 | -Heroku's Suspenders includes a lightweight CSS framework called Stylus. | 124 | +Heroku's Suspenders includes a lightweight CSS framework called Flutie. |
125 | + | ||
126 | +Flutie CSS and an empty project_name.css are included in the application layout. | ||
118 | 127 | ||
119 | -public/stylesheets/screen.css is included in the application layout. | ||
120 | -It imports the Stylus framework: | 128 | +Use project_name.css for your custom styles. |
121 | 129 | ||
122 | - @import url("framework/reset.css"); | ||
123 | - @import url("framework/typography.css"); | ||
124 | - @import url("framework/grid.css"); | ||
125 | - @import url("framework/spacing.css"); | 130 | +Browse to the following path in development for Style Guide: |
126 | 131 | ||
127 | -Add another import for your own styles, by convention named after your app. | 132 | + http://localhost:3000/styleguide |
128 | 133 | ||
129 | Hoptoad | 134 | Hoptoad |
130 | ------- | 135 | ------- |