sassy 0.0.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gemtest ADDED
File without changes
data/Gemfile CHANGED
@@ -1,5 +1,4 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in sassy.gemspec
4
- gemspec
5
-
4
+ gemspec
data/Gemfile.lock CHANGED
@@ -1,30 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sassy (0.0.2)
5
- activesupport (~> 3.0)
6
- i18n (~> 0.5)
4
+ sassy (1.0.0)
5
+ activesupport (~> 3.0.5)
6
+ i18n (~> 0.5.0)
7
7
 
8
8
  GEM
9
9
  remote: http://rubygems.org/
10
10
  specs:
11
- activesupport (3.0.3)
11
+ activesupport (3.0.5)
12
12
  diff-lcs (1.1.2)
13
13
  i18n (0.5.0)
14
- rspec (2.3.0)
15
- rspec-core (~> 2.3.0)
16
- rspec-expectations (~> 2.3.0)
17
- rspec-mocks (~> 2.3.0)
18
- rspec-core (2.3.1)
19
- rspec-expectations (2.3.0)
14
+ rspec (2.5.0)
15
+ rspec-core (~> 2.5.0)
16
+ rspec-expectations (~> 2.5.0)
17
+ rspec-mocks (~> 2.5.0)
18
+ rspec-core (2.5.1)
19
+ rspec-expectations (2.5.0)
20
20
  diff-lcs (~> 1.1.2)
21
- rspec-mocks (2.3.0)
21
+ rspec-mocks (2.5.0)
22
22
 
23
23
  PLATFORMS
24
24
  ruby
25
25
 
26
26
  DEPENDENCIES
27
- activesupport (~> 3.0)
28
- i18n (~> 0.5)
29
- rspec (~> 2.0)
27
+ rspec (~> 2.5.0)
30
28
  sassy!
data/LICENSE CHANGED
@@ -1 +1,20 @@
1
- Sassy by Austin Schneider is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License (http://creativecommons.org/licenses/by-sa/3.0/).
1
+ Copyright (c) 2010 Austin Schneider
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc CHANGED
@@ -23,3 +23,17 @@ Generate SCSS using ruby.
23
23
  end
24
24
  end
25
25
  end
26
+
27
+ == Note on Patches/Pull Requests
28
+
29
+ * Fork the project.
30
+ * Make your feature addition or bug fix.
31
+ * Add tests for it. This is important so I don't break it in a
32
+ future version unintentionally.
33
+ * Commit, do not mess with rakefile, version, or history.
34
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
35
+ * Send me a pull request. Bonus points for topic branches.
36
+
37
+ == Copyright
38
+
39
+ See LICENSE for details.
data/Rakefile CHANGED
@@ -1,3 +1,8 @@
1
1
  require 'bundler'
2
2
 
3
3
  Bundler::GemHelper.install_tasks
4
+
5
+ desc "Run test"
6
+ task :test do
7
+ system "rspec spec"
8
+ end
data/lib/sassy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Sassy
2
- VERSION = "0.0.3"
2
+ VERSION = "1.0.0"
3
3
  end
data/sassy.gemspec CHANGED
@@ -19,12 +19,9 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ["lib"]
20
20
 
21
21
  s.post_install_message = "Thanks for installing Sassy!"
22
-
23
- [
24
- ['i18n', '~> 0.5'],
25
- ['activesupport', '~> 3.0']
26
- ].each do |g, v|
27
- s.add_dependency g, v
28
- end
29
- s.add_development_dependency 'rspec', '~> 2.0'
22
+
23
+ s.add_dependency 'i18n', '~> 0.5.0'
24
+ s.add_dependency 'activesupport', '~> 3.0.5'
25
+
26
+ s.add_development_dependency 'rspec', '~> 2.5.0'
30
27
  end
metadata CHANGED
@@ -3,10 +3,10 @@ name: sassy
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
+ - 1
6
7
  - 0
7
8
  - 0
8
- - 3
9
- version: 0.0.3
9
+ version: 1.0.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Austin Schneider
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-20 00:00:00 -05:00
17
+ date: 2011-03-09 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -28,7 +28,8 @@ dependencies:
28
28
  segments:
29
29
  - 0
30
30
  - 5
31
- version: "0.5"
31
+ - 0
32
+ version: 0.5.0
32
33
  type: :runtime
33
34
  version_requirements: *id001
34
35
  - !ruby/object:Gem::Dependency
@@ -42,7 +43,8 @@ dependencies:
42
43
  segments:
43
44
  - 3
44
45
  - 0
45
- version: "3.0"
46
+ - 5
47
+ version: 3.0.5
46
48
  type: :runtime
47
49
  version_requirements: *id002
48
50
  - !ruby/object:Gem::Dependency
@@ -55,8 +57,9 @@ dependencies:
55
57
  - !ruby/object:Gem::Version
56
58
  segments:
57
59
  - 2
60
+ - 5
58
61
  - 0
59
- version: "2.0"
62
+ version: 2.5.0
60
63
  type: :development
61
64
  version_requirements: *id003
62
65
  description: Generate SCSS with Ruby.
@@ -69,6 +72,7 @@ extensions: []
69
72
  extra_rdoc_files: []
70
73
 
71
74
  files:
75
+ - .gemtest
72
76
  - .gitignore
73
77
  - Gemfile
74
78
  - Gemfile.lock
@@ -125,5 +129,12 @@ rubygems_version: 1.3.7
125
129
  signing_key:
126
130
  specification_version: 3
127
131
  summary: Generate SCSS with Ruby.
128
- test_files: []
129
-
132
+ test_files:
133
+ - spec/lib/sassy/scss/declaration_set_spec.rb
134
+ - spec/lib/sassy/scss/declaration_spec.rb
135
+ - spec/lib/sassy/scss/is_scss_spec.rb
136
+ - spec/lib/sassy/scss/rule_set_spec.rb
137
+ - spec/lib/sassy/scss/rule_spec.rb
138
+ - spec/lib/sassy/scss_spec.rb
139
+ - spec/lib/sassy_spec.rb
140
+ - spec/spec_helper.rb