echo_base 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
data/echo_base.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{echo_base}
8
- s.version = "0.0.3"
8
+ s.version = "0.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["seenmyfate"]
@@ -52,13 +52,10 @@ Gem::Specification.new do |s|
52
52
  "lib/generators/echo_base/templates/autotest/discover.rb",
53
53
  "lib/generators/echo_base/templates/config/cucumber.yml",
54
54
  "lib/generators/echo_base/templates/config/deploy.rb",
55
- "lib/generators/echo_base/templates/config/environments/development.rb",
56
- "lib/generators/echo_base/templates/config/environments/production.rb",
57
- "lib/generators/echo_base/templates/config/environments/test.rb",
58
55
  "lib/generators/echo_base/templates/config/initializers/hoptoad.rb",
59
56
  "lib/generators/echo_base/templates/config/initializers/omniauth.rb",
60
- "lib/generators/echo_base/templates/config/newrelic.yml.example",
61
- "lib/generators/echo_base/templates/config/omniauth.yml.example",
57
+ "lib/generators/echo_base/templates/config/newrelic.yml",
58
+ "lib/generators/echo_base/templates/config/omniauth.yml",
62
59
  "lib/generators/echo_base/templates/config/routes.rb",
63
60
  "lib/generators/echo_base/templates/db/migrate/20101008210657_create_authorizations.rb",
64
61
  "lib/generators/echo_base/templates/db/migrate/20101009192412_create_users.rb",
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: 25
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - seenmyfate
@@ -64,13 +64,10 @@ files:
64
64
  - lib/generators/echo_base/templates/autotest/discover.rb
65
65
  - lib/generators/echo_base/templates/config/cucumber.yml
66
66
  - lib/generators/echo_base/templates/config/deploy.rb
67
- - lib/generators/echo_base/templates/config/environments/development.rb
68
- - lib/generators/echo_base/templates/config/environments/production.rb
69
- - lib/generators/echo_base/templates/config/environments/test.rb
70
67
  - lib/generators/echo_base/templates/config/initializers/hoptoad.rb
71
68
  - lib/generators/echo_base/templates/config/initializers/omniauth.rb
72
- - lib/generators/echo_base/templates/config/newrelic.yml.example
73
- - lib/generators/echo_base/templates/config/omniauth.yml.example
69
+ - lib/generators/echo_base/templates/config/newrelic.yml
70
+ - lib/generators/echo_base/templates/config/omniauth.yml
74
71
  - lib/generators/echo_base/templates/config/routes.rb
75
72
  - lib/generators/echo_base/templates/db/migrate/20101008210657_create_authorizations.rb
76
73
  - lib/generators/echo_base/templates/db/migrate/20101009192412_create_users.rb
@@ -1,26 +0,0 @@
1
- EchoBase::Application.configure do
2
- # Settings specified here will take precedence over those in config/environment.rb
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the webserver when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
- # Show full error reports and disable caching
13
- config.consider_all_requests_local = true
14
- config.action_view.debug_rjs = true
15
- config.action_controller.perform_caching = false
16
-
17
- # Don't care if the mailer can't send
18
- config.action_mailer.raise_delivery_errors = false
19
-
20
- # Print deprecation notices to the Rails logger
21
- config.active_support.deprecation = :log
22
-
23
- # Only use best-standards-support built into browsers
24
- config.action_dispatch.best_standards_support = :builtin
25
- end
26
-
@@ -1,50 +0,0 @@
1
- EchoBase::Application.configure do
2
- # Settings specified here will take precedence over those in config/environment.rb
3
-
4
- # The production environment is meant for finished, "live" apps.
5
- # Code is not reloaded between requests
6
- config.cache_classes = true
7
-
8
- # Full error reports are disabled and caching is turned on
9
- config.consider_all_requests_local = false
10
- config.action_controller.perform_caching = true
11
-
12
- # Specifies the header that your server uses for sending files
13
- #config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
-
15
- # For nginx:
16
- config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
-
18
- # If you have no front-end server that supports something like X-Sendfile,
19
- # just comment this out and Rails will serve the files
20
-
21
- # See everything in the log (default is :info)
22
- # config.log_level = :debug
23
-
24
- # Use a different logger for distributed setups
25
- # config.logger = SyslogLogger.new
26
-
27
- # Use a different cache store in production
28
- config.cache_store = :mem_cache_store
29
- config.middleware.use Rack::Cache, :metastore => 'file:tmp/cache/meta', :entitystore => 'file:tmp/cache/entity'
30
-
31
- # Disable Rails's static asset server
32
- # In production, Apache or nginx will already do this
33
- config.serve_static_assets = false
34
-
35
- # Enable serving of images, stylesheets, and javascripts from an asset server
36
- # config.action_controller.asset_host = "http://assets.example.com"
37
-
38
- # Disable delivery errors, bad email addresses will be ignored
39
- # config.action_mailer.raise_delivery_errors = false
40
-
41
- # Enable threaded mode
42
- # config.threadsafe!
43
-
44
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
45
- # the I18n.default_locale when a translation can not be found)
46
- config.i18n.fallbacks = true
47
-
48
- # Send deprecation notices to registered listeners
49
- config.active_support.deprecation = :notify
50
- end
@@ -1,35 +0,0 @@
1
- EchoBase::Application.configure do
2
- # Settings specified here will take precedence over those in config/environment.rb
3
-
4
- # The test environment is used exclusively to run your application's
5
- # test suite. You never need to work with it otherwise. Remember that
6
- # your test database is "scratch space" for the test suite and is wiped
7
- # and recreated between test runs. Don't rely on the data there!
8
- config.cache_classes = true
9
-
10
- # Log error messages when you accidentally call methods on nil.
11
- config.whiny_nils = true
12
-
13
- # Show full error reports and disable caching
14
- config.consider_all_requests_local = true
15
- config.action_controller.perform_caching = false
16
-
17
- # Raise exceptions instead of rendering exception templates
18
- config.action_dispatch.show_exceptions = false
19
-
20
- # Disable request forgery protection in test environment
21
- config.action_controller.allow_forgery_protection = false
22
-
23
- # Tell Action Mailer not to deliver emails to the real world.
24
- # The :test delivery method accumulates sent emails in the
25
- # ActionMailer::Base.deliveries array.
26
- config.action_mailer.delivery_method = :test
27
-
28
- # Use SQL instead of Active Record's schema dumper when creating the test database.
29
- # This is necessary if your schema can't be completely dumped by the schema dumper,
30
- # like if you have constraints or database-specific column types
31
- # config.active_record.schema_format = :sql
32
-
33
- # Print deprecation notices to the stderr
34
- config.active_support.deprecation = :stderr
35
- end