Skip to content

Commit

Permalink
updates dependencies (removes them?) and adjusts for rails 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
jejacks0n committed Aug 28, 2013
1 parent c50bb87 commit 68c50a4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ source 'http://rubygems.org'

# Dependencies for the dummy app
gem 'rails', '>= 4.0.0'
gem 'rspec-rails'

gemspec
2 changes: 1 addition & 1 deletion lib/navigasmic/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Navigasmic
VERSION = '1.0.4'
VERSION = '1.0.5'
end
4 changes: 0 additions & 4 deletions navigasmic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ Gem::Specification.new do |s|
s.description = %Q{Use semantic structures to to build beautifully simple navigation structures in Rails}
s.licenses = ['MIT']

# Testing dependencies
s.add_development_dependency 'railties', '~> 4.0'
s.add_development_dependency 'rspec-rails'

# Gem Files
s.extra_rdoc_files = %w(LICENSE)
# = MANIFEST =
Expand Down
2 changes: 2 additions & 0 deletions spec/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,7 @@ class Application < Rails::Application

# Version of your assets, change this if you want to expire all your assets
#config.assets.version = '1.0'

config.secret_key_base = "ABCDEF"
end
end
3 changes: 1 addition & 2 deletions spec/dummy/config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false

# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
config.eager_load = false

# Show full error reports and disable caching
config.consider_all_requests_local = true
Expand Down
3 changes: 1 addition & 2 deletions spec/dummy/config/environments/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
config.serve_static_assets = true
config.static_cache_control = "public, max-age=3600"

# Log error messages when you accidentally call methods on nil
config.whiny_nils = true
config.eager_load = false

# Show full error reports and disable caching
config.consider_all_requests_local = true
Expand Down

0 comments on commit 68c50a4

Please sign in to comment.