dsparling-sinatra_mobile_fu 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,30 +1,29 @@
1
+ == 0.0.7 2009-07-10
2
+
3
+ * renamed History.txt to CHANGES
4
+ * added LICENS
5
+
1
6
  == 0.0.6 2009-07-10
2
7
 
3
- * 1 minor enhancement:
4
8
  * removed lib/sinatra/templates.rb, moved code to lib/sinatra/sinatra_mobile_fu.rb
5
9
  * added alias to erb method
6
10
 
7
11
  == 0.0.5 2009-07-10
8
12
 
9
- * 1 minor enhancement:
10
13
  * set project at github as gem
11
14
 
12
15
  == 0.0.4 2009-07-10
13
16
 
14
- * 1 minor enhancement:
15
17
  * sinatra_mobile_fu extension now a gem
16
18
 
17
19
  == 0.0.3 2009-07-09
18
20
 
19
- * 1 minor enhancement:
20
21
  * Making sinatra_mobile_fu into an extension
21
22
 
22
23
  == 0.0.2 2009-07-09
23
24
 
24
- * 1 minor enhancement:
25
25
  * No longer need to check is_mobile in app
26
26
 
27
27
  == 0.0.1 2009-06-28
28
28
 
29
- * 1 major enhancement:
30
29
  * Initial release
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009 Doug Sparling
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,7 +1,9 @@
1
- History.txt
1
+ CHANGES
2
+ LICENSE
2
3
  Manifest.txt
3
4
  README.rdoc
4
5
  Rakefile
6
+ VERSION.yml
5
7
  examples/Rakefile
6
8
  examples/app_force_mobile.rb
7
9
  examples/app.rb
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require File.dirname(__FILE__) + '/lib/sinatra/sinatra_mobile_fu'
5
5
  # Run 'rake -T' to see list of generated tasks (from gem root directory)
6
6
  $hoe = Hoe.new('sinatra_mobile_fu', Sinatra::SinatraMobileFu::VERSION) do |p|
7
7
  p.developer('doug sparling', 'doug.sparling@gmail.com')
8
- p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
8
+ p.changes = p.paragraphs_of("CHANGES", 0..1).join("\n\n")
9
9
  #p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
10
10
  #p.rubyforge_name = p.name # TODO this is default value
11
11
  p.extra_deps = [
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 0
4
+ :patch: 7
@@ -21,11 +21,7 @@ module Sinatra
21
21
 
22
22
  module SinatraMobileFu
23
23
 
24
- VERSION = '0.0.6'
25
-
26
- helpers {
27
- include Sinatra::SinatraMobileFu
28
- }
24
+ VERSION = '0.0.7'
29
25
 
30
26
  enable :sessions
31
27
 
@@ -93,6 +89,7 @@ module Sinatra
93
89
 
94
90
  end
95
91
 
92
+ helpers SinatraMobileFu
96
93
  register SinatraMobileFu
97
94
 
98
95
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sinatra_mobile_fu}
5
- s.version = "0.0.6"
5
+ s.version = "0.0.7"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["doug sparling"]
@@ -13,8 +13,8 @@ Based on mobile_fu by Brendan G. Lim
13
13
 
14
14
  This is very alpha, enough to get me going...}
15
15
  s.email = ["doug.sparling@gmail.com"]
16
- s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.rdoc"]
17
- s.files = ["History.txt", "Manifest.txt", "README.rdoc", "Rakefile", "examples/Rakefile", "examples/app_force_mobile.rb", "examples/app.rb", "examples/spec/sinatra_mobile_fu_force_mobile_spec.rb", "examples/spec/sinatra_mobile_fu_spec.rb", "examples/views/index.erb", "examples/views/index.mobile.erb", "lib/sinatra/sinatra_mobile_fu.rb", "script/console", "script/destroy", "script/generate", "sinatra_mobile_fu.gemspec", "test/test_helper.rb", "test/test_sinatra_mobile_fu.rb"]
16
+ s.extra_rdoc_files = ["Manifest.txt", "README.rdoc"]
17
+ s.files = ["CHANGES", "LICENSE", "Manifest.txt", "README.rdoc", "Rakefile", "VERSION.yml", "examples/Rakefile", "examples/app_force_mobile.rb", "examples/app.rb", "examples/spec/sinatra_mobile_fu_force_mobile_spec.rb", "examples/spec/sinatra_mobile_fu_spec.rb", "examples/views/index.erb", "examples/views/index.mobile.erb", "lib/sinatra/sinatra_mobile_fu.rb", "script/console", "script/destroy", "script/generate", "sinatra_mobile_fu.gemspec", "test/test_helper.rb", "test/test_sinatra_mobile_fu.rb"]
18
18
  s.homepage = %q{http://github.com/dsparilng/sinatra_mobile_fu}
19
19
  s.rdoc_options = ["--main", "README.rdoc"]
20
20
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dsparling-sinatra_mobile_fu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - doug sparling
@@ -50,14 +50,15 @@ executables: []
50
50
  extensions: []
51
51
 
52
52
  extra_rdoc_files:
53
- - History.txt
54
53
  - Manifest.txt
55
54
  - README.rdoc
56
55
  files:
57
- - History.txt
56
+ - CHANGES
57
+ - LICENSE
58
58
  - Manifest.txt
59
59
  - README.rdoc
60
60
  - Rakefile
61
+ - VERSION.yml
61
62
  - examples/Rakefile
62
63
  - examples/app_force_mobile.rb
63
64
  - examples/app.rb