rbet 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.rdoc +21 -24
  2. data/lib/rbet/version.rb +1 -1
  3. metadata +1 -1
@@ -1,39 +1,36 @@
1
1
  == Ruby Library for ExactTarget
2
2
 
3
- This is an attempt to make integrating easier with ExactTarget. ExactTarget is
4
- an email newsletter system designed to make it easy to setup timely newsletters.
5
-
6
- Exact Target: http://www.exacttarget.com/
7
-
8
- Exact Target API:
9
- http://developers.exacttarget.com/Web/help/Overview/Introduction_to_ExactTarget_API_Help.htm
3
+ This is an attempt to make integrating easier with ExactTarget. ExactTarget is an email newsletter system designed to make it easy to setup timely newsletters.
4
+
5
+ - Exact Target: http://www.exacttarget.com/
6
+ - Exact Target API: http://wiki.memberlandingpages.com/API_References/Web_Service_Guide
10
7
 
11
8
  == Adding rbet to a Rails Project
12
-
13
- If you are using Git to manage your rails project and would like to add rbet as a submodule:
14
-
15
- git submodule add git://github.com/sbraford/rbet.git vendor/rbet
16
-
17
- Then in the bottom of your environment.rb, or in an initializer, add:
18
9
 
19
- require File.join(RAILS_ROOT, 'vendor', 'rbet', 'lib', 'et.rb')
10
+ [n3bulous] I moved this over to a gem on gemcutter. They don't appear to support namespacing yet.
11
+
12
+ sudo gem install rbet
20
13
 
21
14
  == Development Notes
22
-
23
- Original development work was performed by Todd A. Fisher.
24
-
25
- Forking development to GitHub + minor development additions/changes by Shanti A. Braford.
26
-
15
+
16
+ - Original development work was performed by Todd A. Fisher.
17
+ - Forking development to GitHub + minor development additions/changes by Shanti A. Braford.
18
+
27
19
  == Contributing
28
20
 
29
- If you'd like to contribute, fork a copy of the repo on GitHub.
30
-
31
- When you have patch(es) ready, contact me at:shantibraford@gmail.com
21
+ If you'd like to contribute, fork a copy of the repo on GitHub. When you have patch(es) ready, contact me at:shantibraford@gmail.com
22
+
23
+ Forkers:
24
+
25
+ - http://github.com/sbraford/rbet/
26
+ - http://github.com/frogmetrics/rbet
27
+ - http://github.com/BDQ/rbet
28
+ - http://github.com/n3bulous/rbet
32
29
 
33
30
  == Notes
34
31
 
35
- 2000 character limit for each attribute
32
+ - 2000 character limit for each attribute
36
33
 
37
34
  == Win32 Notes
38
35
 
39
- This has not been tested on Windows. May the force be with you, young win32 jedi =)
36
+ This has not been tested on Windows. May the force be with you, young win32 jedi =)
@@ -3,7 +3,7 @@ module RBET
3
3
 
4
4
  MAJOR = 1
5
5
  MINOR = 0
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  def self.to_s # :nodoc:
9
9
  [MAJOR, MINOR, TINY].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - See Contributing Section