public
Rubygem
Description: Simple Facebook platform simulator, to aid in developing Facebook canvas apps offline.
Homepage: http://github.com/sco/fakebook/
Clone URL: git://github.com/sco/fakebook.git
Click here to lend your support to: fakebook and make a donation at www.pledgie.com !
re-doing gemspec and bumping version
sco (author)
Thu Jul 17 16:06:21 -0700 2008
commit  b3e0f51d3ede9071f96de22dff3dcff869c8214b
tree    c0a08c8df3aa5c5cf9645608575bdceaf2968fc9
parent  031e6e391f93b18fd649c3c7223e5435c068c6bf
...
1
2
 
3
 
4
5
6
7
 
 
...
1
 
2
3
4
5
 
 
6
7
8
0
@@ -1,6 +1,7 @@
0
 require 'rake'
0
-require './lib/fakebook'
0
+#require './lib/fakebook'
0
 
0
+desc "install gem"
0
 task :install_gem do
0
- puts `gem build fakebook.gemspec && gem install fakebook-#{Fakebook::Version}.gem && rm fakebook-#{Fakebook::Version}.gem`
0
-end
0
\ No newline at end of file
0
+ puts `gem build fakebook.gemspec && sudo gem install fakebook*.gem && rm fakebook*.gem`
0
+end
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
38
39
40
...
1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
 
20
0
@@ -1,39 +1,19 @@
0
 Gem::Specification.new do |s|
0
- s.name = "fakebook"
0
- s.version = "0.1.1" # also see fakebook.rb
0
- s.date = "2008-07-09"
0
- s.summary = "Simple Facebook platform simulator, to aid in developing Facebook canvas apps offline."
0
- s.homepage = "http://github.com/sco/fakebook"
0
- s.author = "Scott Raymond"
0
- s.email = "sco@scottraymond.net"
0
- s.add_dependency "rack", ">=0.3.0"
0
- s.has_rdoc = true
0
- s.rdoc_options = ["--main", "README"]
0
- s.extra_rdoc_files = ["Manifest", "TODO", "README", "LICENSE"]
0
- s.executables = ['fakebook']
0
- s.files = ["bin/fakebook",
0
- "fakebook.gemspec",
0
- "lib/fakebook-assets/base.js",
0
- "lib/fakebook-assets/canvas.css",
0
- "lib/fakebook-assets/common.css",
0
- "lib/fakebook-assets/extended.js",
0
- "lib/fakebook-assets/fakebook.js",
0
- "lib/fakebook-assets/fbml.js",
0
- "lib/fakebook-assets/navigator_bg.gif",
0
- "lib/fakebook-assets/shadow_gray.gif",
0
- "lib/fakebook-assets/string.js",
0
- "lib/fakebook-assets/white.gif",
0
- "lib/fakebook.rb",
0
- "lib/node.rb",
0
- "lib/templates/minimal.html.erb",
0
- "lib/templates/standard.html.erb",
0
- "lib/tokenizer.rb",
0
- "LICENSE",
0
- "Manifest",
0
- "Rakefile",
0
- "README",
0
- "TODO",
0
- ]
0
+ s.name = "fakebook"
0
+ s.version = '0.1.2' # also see Fakebook::Version
0
+ s.date = '2008-07-17'
0
+ s.summary = "Simple Facebook platform simulator, to aid in developing Facebook canvas apps offline."
0
+ s.author = "Scott Raymond"
0
+ s.email = 'sco@scottraymond.net'
0
+ s.homepage = 'http://github.com/sco/fakebook'
0
+ s.platform = Gem::Platform::RUBY
0
+ s.has_rdoc = true
0
+ s.require_paths = ['lib']
0
+ s.executables = ['fakebook']
0
+ s.default_executable = 'fakebook'
0
+ s.extra_rdoc_files = ['TODO', 'README', 'LICENSE']
0
+ s.files = ['TODO', 'README', 'LICENSE']
0
+ s.rdoc_options = ['--main', 'README']
0
+ s.add_dependency "rack", ">=0.3.0"
0
+ s.files = ['lib/**/*', 'bin/*'].inject([]) { |files, dir| files + Dir.glob(dir).delete_if { |item| item =~ /^\./ } }
0
 end
0
-
0
-#
0
\ No newline at end of file
...
9
10
11
12
 
13
14
15
...
9
10
11
 
12
13
14
15
0
@@ -9,7 +9,7 @@ require File.dirname(__FILE__) + '/node'
0
 
0
 class Fakebook
0
   
0
- Version = '0.1.1' # also see fakebook.gemspec
0
+ Version = '0.1.2' # also see fakebook.gemspec
0
   
0
   attr_accessor :callback, :canvas, :secret, :fb_params, :template
0
 

Comments

    No one has commented yet.