Skip to content

Commit

Permalink
updates to changelog, readme, rakefile, version bump, and refreshed g…
Browse files Browse the repository at this point in the history
…emspec
  • Loading branch information
tpitale committed Jun 30, 2011
1 parent 59e8caf commit 0f4d4bf
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.9.2

* Removed all deprecated features: Garb::Report, Garb::Resource, Garb::Profile, and Garb::Account
* Moved the differing types of requests into a module, will refactor to share more code

Version 0.9.0

* New Garb::Model is solid. Garb::Resource and Garb::Report are deprecated.
Expand Down
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Garb
Important Changes
=================

It has now been nearly 6 months, I have removed the deprecated features listed below in master.
I will release 0.9.2 shortly, with these features removed.

With The release of version 0.9.0 I have officially deprecated Garb::Report, Garb::Resource,
Garb::Profile, and Garb::Account. Garb::Report and Garb::Resource should be replaced by Garb::Model.
Garb::Profile and Garb::Account are supplanted by their Garb::Management::* counterparts.
Expand Down Expand Up @@ -38,15 +41,15 @@ OAuth Access Token
> Garb::Session.access_token = access_token # assign from oauth gem

Accounts, WebProperties, Profiles, and Goals
--------
--------------------------------------------

> Garb::Management::Account.all
> Garb::Management::WebProperty.all
> Garb::Management::Profile.all
> Garb::Management::Goal.all

Profiles for a UA- Number (a WebProperty)
--------
-----------------------------------------

> profile = Garb::Management::Profile.all.detect {|p| p.web_property_id == 'UA-XXXXXXX-X'}

Expand Down Expand Up @@ -150,12 +153,13 @@ Requirements for Testing
------------------------

* shoulda
* jferris-mocha
* mocha
* bourne

Install
-------

gem install garb
gem install garb OR with bundler: gem 'garb' and `bundle install`

Contributors
------------
Expand All @@ -171,7 +175,7 @@ License

(The MIT License)

Copyright (c) 2010 Viget Labs
Copyright (c) 2011 Viget Labs

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec = Gem::Specification.new do |s|
s.authors = ['Tony Pitale']
s.email = '[email protected]'
s.homepage = 'http://github.com/vigetlabs/garb'
s.files = %w(README.md Rakefile) + Dir.glob("lib/**/*")
s.files = %w(README.md CHANGELOG.md Rakefile) + Dir.glob("lib/**/*")
s.test_files = Dir.glob("test/**/*")

s.add_dependency("crack", [">= 0.1.6"])
Expand Down
Loading

0 comments on commit 0f4d4bf

Please sign in to comment.