File tree 2 files changed +20
-25
lines changed
2 files changed +20
-25
lines changed Original file line number Diff line number Diff line change 1
- # css2sass
1
+ css2sass
2
+ ========
2
3
3
4
[ http://css2sass.heroku.com/ ] ( http://css2sass.heroku.com/ )
4
5
@@ -8,32 +9,27 @@ It's heavily inspired by the [html2haml app](http://html2haml.heroku.com/)
8
9
9
10
## Usage
10
11
11
- 1 - Paste the CSS in the first box
12
- 2 - click convert
13
- 3 - Done!
12
+ * Paste the CSS in the first box
13
+ * click convert
14
+ * Done!
14
15
15
16
## API
16
17
17
- It currently supports properly with json and xml.
18
+ json and xml.
18
19
19
20
## Testing
20
21
21
- [ RSpec] ( http://wiki.github.com/dchelimsky/rspec )
22
-
23
- [ Sinatra testing] ( http://www.sinatrarb.com/testing.html )
24
-
25
- See ` css2sass_spec.rb `
22
+ See ` test/test_css2sass.rb `
26
23
27
24
## TODO
28
25
29
26
* Flash warnings TODO:!
30
- * Better tests.
27
+ * More tests.
31
28
32
29
## Resources
33
30
34
- * [ Sinatra] ( http://www.sinatrarb.com )
35
- * [ Mongodb] ( http://www.mongodb.org )
36
- * [ SASS] ( http://sass-lang.com/ )
31
+ * [ Sinatra] ( http://www.sinatrarb.com )
32
+ * [ SASS] ( http://sass-lang.com/ )
37
33
38
34
## Note on Patches/Pull Requests
39
35
Original file line number Diff line number Diff line change @@ -14,16 +14,15 @@ def test_it_says_hello_world
14
14
end
15
15
16
16
def test_api_speak_json
17
- p @browser . post '/json' , json_post
17
+ @browser . post '/json' , json_post
18
18
assert @browser . last_response . ok?
19
19
assert_match json_response , @browser . last_response . body
20
20
end
21
21
22
22
def test_api_speak_xml
23
- p @browser . post '/xml' , xml_post
23
+ @browser . post '/xml' , xml_post
24
24
assert @browser . last_response . ok?
25
25
assert_match xml_response , @browser . last_response . body
26
-
27
26
end
28
27
29
28
def home_title
@@ -54,14 +53,14 @@ def xml_post
54
53
55
54
def xml_response
56
55
"<?xml version=\" 1.0\" encoding=\" UTF-8\" ?>\n " +
57
- "<page>\n " +
58
- "<css>\n " +
59
- "<![CDATA[.content-navigation { border-color: #3bbfce; color: #2b9eab; }]]>\n " +
60
- "</css>\n " +
61
- "<sass>\n " +
62
- "<![CDATA[.content-navigation\n border-color: #3bbfce\n color: #2b9eab\n ]]>\n " +
63
- "</sass>\n " +
64
- "</page>\n "
56
+ "<page>\n " +
57
+ "<css>\n " +
58
+ "<![CDATA[.content-navigation { border-color: #3bbfce; color: #2b9eab; }]]>\n " +
59
+ "</css>\n " +
60
+ "<sass>\n " +
61
+ "<![CDATA[.content-navigation\n border-color: #3bbfce\n color: #2b9eab\n ]]>\n " +
62
+ "</sass>\n " +
63
+ "</page>\n "
65
64
end
66
65
67
66
end
You can’t perform that action at this time.
0 commit comments