update changelog

remove env var hack from Gemfile
This commit is contained in:
John McAliley 2011-06-03 12:16:15 -04:00
parent c80491a5fb
commit 00eebf5187
2 changed files with 23 additions and 17 deletions

View File

@ -1,3 +1,10 @@
== 0.4.0 (2011-06-03)
* Fix postgres bug
* New impression count method that accepts options for filter, start_date and end_date
* Add referrer to Impression model. YOU MUST RUN THE UPGRADE MIGRATION IF YOU ARE UPGRADING FROM 0.3.0
* UPGRADE MIGRATION = impressionist/upgrade_migrations/version_0_4_0.rb
* NOTE IF YOU ARE UPGRADING FROM 0.2.5 OR BELOW, YOU MUST RUN BOTH UPGRADE MIGRATIONS
== 0.3.0 (2011-03-06)
* added session_hash to impression model
* migration template updated to add session_hash

33
Gemfile
View File

@ -7,21 +7,20 @@ group :development do
gem "rcov", ">= 0"
end
if ENV['MY_BUNDLE_ENV'] == "dev"
group :development do
gem 'ZenTest'
gem 'autotest'
gem 'systemu'
gem "rspec"
gem "rspec-rails"
gem "mongrel", "1.2.0.pre2"
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'spork'
gem 'launchy'
gem 'autotest-notification'
gem 'httpclient'
end
group :test do
gem 'ZenTest'
gem 'autotest'
gem 'systemu'
gem "rspec"
gem "rspec-rails"
gem "mongrel", "1.2.0.pre2"
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'spork'
gem 'launchy'
gem 'autotest-notification'
gem 'httpclient'
end