parent
c80491a5fb
commit
00eebf5187
|
@ -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)
|
== 0.3.0 (2011-03-06)
|
||||||
* added session_hash to impression model
|
* added session_hash to impression model
|
||||||
* migration template updated to add session_hash
|
* migration template updated to add session_hash
|
||||||
|
|
33
Gemfile
33
Gemfile
|
@ -7,21 +7,20 @@ group :development do
|
||||||
gem "rcov", ">= 0"
|
gem "rcov", ">= 0"
|
||||||
end
|
end
|
||||||
|
|
||||||
if ENV['MY_BUNDLE_ENV'] == "dev"
|
group :test do
|
||||||
group :development do
|
gem 'ZenTest'
|
||||||
gem 'ZenTest'
|
gem 'autotest'
|
||||||
gem 'autotest'
|
gem 'systemu'
|
||||||
gem 'systemu'
|
gem "rspec"
|
||||||
gem "rspec"
|
gem "rspec-rails"
|
||||||
gem "rspec-rails"
|
gem "mongrel", "1.2.0.pre2"
|
||||||
gem "mongrel", "1.2.0.pre2"
|
gem 'capybara'
|
||||||
gem 'capybara'
|
gem 'database_cleaner'
|
||||||
gem 'database_cleaner'
|
gem 'cucumber-rails'
|
||||||
gem 'cucumber-rails'
|
gem 'cucumber'
|
||||||
gem 'cucumber'
|
gem 'spork'
|
||||||
gem 'spork'
|
gem 'launchy'
|
||||||
gem 'launchy'
|
gem 'autotest-notification'
|
||||||
gem 'autotest-notification'
|
gem 'httpclient'
|
||||||
gem 'httpclient'
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue