golf 0.6.4 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. data/lib/golf/version.rb +1 -1
  2. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_background-clip.scssc +0 -0
  3. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_border-radius.scssc +0 -0
  4. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_box-shadow.scssc +0 -0
  5. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_gradient.scssc +0 -0
  6. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_opacity.scssc +0 -0
  7. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_shared.scssc +0 -0
  8. data/templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_text-shadow.scssc +0 -0
  9. data/templates/compass/.sass-cache/294b99ffe7786bc7dea9c87287be7eb43874f7f4/_support.scssc +0 -0
  10. data/templates/compass/.sass-cache/7027ce0115a3bdb747dcfb7080f30e1f24a4160d/_utilities.scssc +0 -0
  11. data/templates/compass/.sass-cache/9e606917b01e72164113eee0d51a069910b9b9e1/_reset.scssc +0 -0
  12. data/templates/compass/.sass-cache/e90078c6c954a5f81b7134d9c264bfd913112e1b/_fancy-buttons.sassc +0 -0
  13. data/templates/compass/.sass-cache/e90078c6c954a5f81b7134d9c264bfd913112e1b/_fancy-gradient.sassc +0 -0
  14. data/templates/compass/Gemfile +4 -0
  15. data/templates/compass/config.ru +6 -0
  16. data/templates/compass/golfapp/components/HelloWorld/HelloWorld.css.scss +3 -0
  17. data/templates/compass/golfapp/components/HelloWorld/HelloWorld.html.haml +3 -0
  18. data/templates/compass/golfapp/controller.js +7 -0
  19. data/templates/compass/golfapp/images/button_bg.png +0 -0
  20. data/templates/compass/golfapp/plugins/mylib.js +0 -0
  21. data/templates/compass/golfapp/scripts/00-myscript.js +0 -0
  22. data/templates/compass/golfapp/styles/ie6.scss +4 -0
  23. data/templates/compass/golfapp/styles/main.css.scss +4 -0
  24. data/templates/compass/golfapp/styles/reset.css.scss +1 -0
  25. data/templates/new/Gemfile +2 -1
  26. data/templates/rails/Gemfile +1 -1
  27. data/templates/sinatra/Gemfile +1 -1
  28. data/templates/sinatra/config.ru +4 -2
  29. data/templates/twitter/Gemfile +1 -1
  30. data/templates/twitter/config.ru +3 -1
  31. metadata +24 -3
  32. data/templates/rails/Gemfile.lock +0 -83
  33. data/templates/sinatra/Gemfile.lock +0 -21
data/lib/golf/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Golf
2
- VERSION = "0.6.4"
2
+ VERSION = "0.6.5"
3
3
  end
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'golf','<= 0.6.5'
4
+ gem 'fancy-buttons'
@@ -0,0 +1,6 @@
1
+ require 'rubygems'
2
+ require 'bundler/setup'
3
+
4
+ Bundler.require
5
+
6
+ run Golf::Rack.new
@@ -0,0 +1,3 @@
1
+ div.container { color: "blue" };
2
+
3
+
@@ -0,0 +1,3 @@
1
+ %div
2
+ %button
3
+ Click here
@@ -0,0 +1,7 @@
1
+ $.golf.controller = [
2
+ { route: ".*",
3
+ action: function(container, params) {
4
+ container.empty().append(new Component.HelloWorld());
5
+ }
6
+ }
7
+ ];
File without changes
File without changes
@@ -0,0 +1,4 @@
1
+ a.button, form button {
2
+ background-image: none !important;
3
+ &:hover, &:active, &:focus {
4
+ background-image: none !important; } }
@@ -0,0 +1,4 @@
1
+ @import "fancy-buttons";
2
+
3
+ button { @include fancy-button(#2966a8); }
4
+
@@ -0,0 +1 @@
1
+ @import "blueprint/reset"
@@ -1,3 +1,4 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem 'golf'
3
+
4
+ gem 'golf', '<= 0.6.5'
@@ -7,7 +7,7 @@ gem 'rails', '3.0.6'
7
7
 
8
8
  gem 'sqlite3'
9
9
 
10
- gem 'golf'
10
+ gem 'golf', '<= 0.6.5'
11
11
 
12
12
  # Use unicorn as the web server
13
13
  # gem 'unicorn'
@@ -1,4 +1,4 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem 'golf'
3
+ gem 'golf', '<= 0.6.5'
4
4
  gem 'sinatra'
@@ -1,6 +1,8 @@
1
1
  require 'rubygems'
2
- require 'golf'
3
- require 'sinatra'
2
+ require 'bundler'
3
+
4
+ Bundler.require
5
+
4
6
  require './demo'
5
7
 
6
8
  use DemoBackend
@@ -1,3 +1,3 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem 'golf'
3
+ gem 'golf', '<= 0.6.5'
@@ -1,4 +1,6 @@
1
1
  require 'rubygems'
2
- require 'golf'
2
+ require 'bundler'
3
+
4
+ Bundler.require
3
5
 
4
6
  run Golf::Rack.new
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: golf
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.6.4
5
+ version: 0.6.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Micha Niskin, Alan Dipert, Julio Capote
@@ -107,6 +107,29 @@ files:
107
107
  - resources/jquery.golf.js
108
108
  - resources/jquery.js
109
109
  - resources/welcome2golf.html
110
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_background-clip.scssc
111
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_border-radius.scssc
112
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_box-shadow.scssc
113
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_gradient.scssc
114
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_opacity.scssc
115
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_shared.scssc
116
+ - templates/compass/.sass-cache/0c038f67c6ff1b994b0191a2b8cca8192a8be6d6/_text-shadow.scssc
117
+ - templates/compass/.sass-cache/294b99ffe7786bc7dea9c87287be7eb43874f7f4/_support.scssc
118
+ - templates/compass/.sass-cache/7027ce0115a3bdb747dcfb7080f30e1f24a4160d/_utilities.scssc
119
+ - templates/compass/.sass-cache/9e606917b01e72164113eee0d51a069910b9b9e1/_reset.scssc
120
+ - templates/compass/.sass-cache/e90078c6c954a5f81b7134d9c264bfd913112e1b/_fancy-buttons.sassc
121
+ - templates/compass/.sass-cache/e90078c6c954a5f81b7134d9c264bfd913112e1b/_fancy-gradient.sassc
122
+ - templates/compass/Gemfile
123
+ - templates/compass/config.ru
124
+ - templates/compass/golfapp/components/HelloWorld/HelloWorld.css.scss
125
+ - templates/compass/golfapp/components/HelloWorld/HelloWorld.html.haml
126
+ - templates/compass/golfapp/controller.js
127
+ - templates/compass/golfapp/images/button_bg.png
128
+ - templates/compass/golfapp/plugins/mylib.js
129
+ - templates/compass/golfapp/scripts/00-myscript.js
130
+ - templates/compass/golfapp/styles/ie6.scss
131
+ - templates/compass/golfapp/styles/main.css.scss
132
+ - templates/compass/golfapp/styles/reset.css.scss
110
133
  - templates/component/Component.html
111
134
  - templates/new/Gemfile
112
135
  - templates/new/config.ru
@@ -116,7 +139,6 @@ files:
116
139
  - templates/new/golfapp/scripts/00-myscript.js
117
140
  - templates/new/golfapp/styles/main.css
118
141
  - templates/rails/Gemfile
119
- - templates/rails/Gemfile.lock
120
142
  - templates/rails/README
121
143
  - templates/rails/Rakefile
122
144
  - templates/rails/app/controllers/application_controller.rb
@@ -172,7 +194,6 @@ files:
172
194
  - templates/raw/scripts/00-myscript.js
173
195
  - templates/raw/styles/main.css
174
196
  - templates/sinatra/Gemfile
175
- - templates/sinatra/Gemfile.lock
176
197
  - templates/sinatra/config.ru
177
198
  - templates/sinatra/demo.rb
178
199
  - templates/sinatra/golfapp/components/RandomNumber/RandomNumber.html
@@ -1,83 +0,0 @@
1
- PATH
2
- remote: ~/Projects/golf
3
- specs:
4
- golf (0.3.0)
5
- json
6
- rack
7
- thor
8
-
9
- GEM
10
- remote: http://rubygems.org/
11
- specs:
12
- abstract (1.0.0)
13
- actionmailer (3.0.6)
14
- actionpack (= 3.0.6)
15
- mail (~> 2.2.15)
16
- actionpack (3.0.6)
17
- activemodel (= 3.0.6)
18
- activesupport (= 3.0.6)
19
- builder (~> 2.1.2)
20
- erubis (~> 2.6.6)
21
- i18n (~> 0.5.0)
22
- rack (~> 1.2.1)
23
- rack-mount (~> 0.6.14)
24
- rack-test (~> 0.5.7)
25
- tzinfo (~> 0.3.23)
26
- activemodel (3.0.6)
27
- activesupport (= 3.0.6)
28
- builder (~> 2.1.2)
29
- i18n (~> 0.5.0)
30
- activerecord (3.0.6)
31
- activemodel (= 3.0.6)
32
- activesupport (= 3.0.6)
33
- arel (~> 2.0.2)
34
- tzinfo (~> 0.3.23)
35
- activeresource (3.0.6)
36
- activemodel (= 3.0.6)
37
- activesupport (= 3.0.6)
38
- activesupport (3.0.6)
39
- arel (2.0.9)
40
- builder (2.1.2)
41
- erubis (2.6.6)
42
- abstract (>= 1.0.0)
43
- i18n (0.5.0)
44
- json (1.5.1)
45
- mail (2.2.15)
46
- activesupport (>= 2.3.6)
47
- i18n (>= 0.4.0)
48
- mime-types (~> 1.16)
49
- treetop (~> 1.4.8)
50
- mime-types (1.16)
51
- polyglot (0.3.1)
52
- rack (1.2.2)
53
- rack-mount (0.6.14)
54
- rack (>= 1.0.0)
55
- rack-test (0.5.7)
56
- rack (>= 1.0)
57
- rails (3.0.6)
58
- actionmailer (= 3.0.6)
59
- actionpack (= 3.0.6)
60
- activerecord (= 3.0.6)
61
- activeresource (= 3.0.6)
62
- activesupport (= 3.0.6)
63
- bundler (~> 1.0)
64
- railties (= 3.0.6)
65
- railties (3.0.6)
66
- actionpack (= 3.0.6)
67
- activesupport (= 3.0.6)
68
- rake (>= 0.8.7)
69
- thor (~> 0.14.4)
70
- rake (0.8.7)
71
- sqlite3 (1.3.3)
72
- thor (0.14.6)
73
- treetop (1.4.9)
74
- polyglot (>= 0.3.1)
75
- tzinfo (0.3.26)
76
-
77
- PLATFORMS
78
- ruby
79
-
80
- DEPENDENCIES
81
- golf!
82
- rails (= 3.0.6)
83
- sqlite3
@@ -1,21 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- golf (0.2.0)
5
- json
6
- rack
7
- thor
8
- json (1.5.1)
9
- rack (1.2.2)
10
- sinatra (1.2.2)
11
- rack (~> 1.1)
12
- tilt (< 2.0, >= 1.2.2)
13
- thor (0.14.6)
14
- tilt (1.2.2)
15
-
16
- PLATFORMS
17
- ruby
18
-
19
- DEPENDENCIES
20
- golf
21
- sinatra