echo_base 0.0.2 → 0.0.3
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/README.rdoc +44 -3
- data/VERSION +1 -1
- data/echo_base.gemspec +1 -1
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -1,6 +1,47 @@
|
|
1
|
-
=
|
1
|
+
= Echo Base
|
2
|
+
Is a starting point for fast prototyping of Rails 3 apps
|
2
3
|
|
3
|
-
|
4
|
+
Generate a Rails 3 app, then include the gem in your Gemfile:
|
5
|
+
|
6
|
+
group :development do
|
7
|
+
gem 'echo_base'
|
8
|
+
end
|
9
|
+
|
10
|
+
Bundle and then run the generator:
|
11
|
+
|
12
|
+
rails g echo_base "my awesome app name"
|
13
|
+
|
14
|
+
The generator will add the gems listed below, along with the default layout/theme from the web-app-theme gem, and a very basic setup for omniauth. After running the generator, add your api keys to config/omniauth.yml and then:
|
15
|
+
|
16
|
+
bundle install
|
17
|
+
rake db:migrate
|
18
|
+
|
19
|
+
And you're ready to get spiking
|
20
|
+
|
21
|
+
Check out the docs on web-app-theme at http://github.com/pilu/web-app-theme for examples of how to make use oo the layout generators
|
22
|
+
|
23
|
+
==Gems included:
|
24
|
+
|
25
|
+
* Omniauth (http://github.com/intridea/omniauth)
|
26
|
+
* Rspec2 (http://github.com/dchelimsky/rspec)
|
27
|
+
* Infinity Test (http://github.com/tomas-stefano/infinity_test)
|
28
|
+
* Cucumber (http://github.com/aslakhellesoy/cucumber)
|
29
|
+
* Capybara (http://github.com/jnicklas/capybara)
|
30
|
+
* Factory Girl (http://github.com/thoughtbot/factory_girl)
|
31
|
+
* Webmock (http://github.com/bblimke/webmock)
|
32
|
+
* Capistrano (http://github.com/capistrano/capistrano)
|
33
|
+
* New Relic (http://github.com/newrelic/rpm)
|
34
|
+
* Hoptoad (http://github.com/thoughtbot/hoptoad_notifier)
|
35
|
+
* Jquery Rails (http://github.com/indirect/jquery-rails)
|
36
|
+
* Will Paginate (http://github.com/mislav/will_paginate)
|
37
|
+
* Dalli (http://github.com/mperham/dalli)
|
38
|
+
* Web App Theme (http://github.com/pilu/web-app-theme)
|
39
|
+
|
40
|
+
==Coming soon
|
41
|
+
|
42
|
+
* Better layouts/cleaner markup
|
43
|
+
* Formatastic integration
|
44
|
+
* Full test suite for all generated files (cuke/rspec)
|
4
45
|
|
5
46
|
== Note on Patches/Pull Requests
|
6
47
|
|
@@ -14,4 +55,4 @@ Description goes here.
|
|
14
55
|
|
15
56
|
== Copyright
|
16
57
|
|
17
|
-
Copyright (c) 2010
|
58
|
+
Copyright (c) 2010 Seenmyfate. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
data/echo_base.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: echo_base
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- seenmyfate
|