putsjs 0.0.1 → 0.0.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.
- data/lib/putsjs/version.rb +1 -1
- data/putsjs.gemspec +3 -4
- metadata +12 -22
data/lib/putsjs/version.rb
CHANGED
data/putsjs.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.authors = ["Samuel Selvanathan"]
|
|
9
9
|
s.email = ["sjasel@gmail.com"]
|
|
10
10
|
s.homepage = ""
|
|
11
|
-
s.summary = %q{
|
|
12
|
-
s.description = %q{
|
|
11
|
+
s.summary = %q{Ruby style puts instead of console.log for logging to console from coffescript}
|
|
12
|
+
s.description = %q{Love Ruby's 'puts' syntax? and hate typing console.log everytime you want to print something to the web-browser console from you Coffecript? Then use 'putsjs'. putsjs allows console logging statements to be written as puts statements and during asset compilation converts them into console.log statements in you coffeescript.}
|
|
13
13
|
|
|
14
14
|
s.rubyforge_project = "putsjs"
|
|
15
15
|
|
|
@@ -18,8 +18,7 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
19
|
s.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
-
s.
|
|
22
|
-
s.add_runtime_dependency 'railties', '~> 3.2.0'
|
|
21
|
+
s.add_dependency('coffee-rails')
|
|
23
22
|
s.add_dependency('tilt')
|
|
24
23
|
|
|
25
24
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: putsjs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -12,30 +12,19 @@ cert_chain: []
|
|
|
12
12
|
date: 2012-02-21 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
|
-
name: coffee-
|
|
16
|
-
requirement: &
|
|
15
|
+
name: coffee-rails
|
|
16
|
+
requirement: &70139005732780 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version:
|
|
22
|
-
type: :runtime
|
|
23
|
-
prerelease: false
|
|
24
|
-
version_requirements: *70265644351760
|
|
25
|
-
- !ruby/object:Gem::Dependency
|
|
26
|
-
name: railties
|
|
27
|
-
requirement: &70265644348100 !ruby/object:Gem::Requirement
|
|
28
|
-
none: false
|
|
29
|
-
requirements:
|
|
30
|
-
- - ~>
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.2.0
|
|
21
|
+
version: '0'
|
|
33
22
|
type: :runtime
|
|
34
23
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70139005732780
|
|
36
25
|
- !ruby/object:Gem::Dependency
|
|
37
26
|
name: tilt
|
|
38
|
-
requirement: &
|
|
27
|
+
requirement: &70139005727980 !ruby/object:Gem::Requirement
|
|
39
28
|
none: false
|
|
40
29
|
requirements:
|
|
41
30
|
- - ! '>='
|
|
@@ -43,10 +32,11 @@ dependencies:
|
|
|
43
32
|
version: '0'
|
|
44
33
|
type: :runtime
|
|
45
34
|
prerelease: false
|
|
46
|
-
version_requirements: *
|
|
47
|
-
description:
|
|
48
|
-
to the console
|
|
49
|
-
|
|
35
|
+
version_requirements: *70139005727980
|
|
36
|
+
description: Love Ruby's 'puts' syntax? and hate typing console.log everytime you
|
|
37
|
+
want to print something to the web-browser console from you Coffecript? Then use
|
|
38
|
+
'putsjs'. putsjs allows console logging statements to be written as puts statements
|
|
39
|
+
and during asset compilation converts them into console.log statements in you coffeescript.
|
|
50
40
|
email:
|
|
51
41
|
- sjasel@gmail.com
|
|
52
42
|
executables: []
|
|
@@ -85,5 +75,5 @@ rubyforge_project: putsjs
|
|
|
85
75
|
rubygems_version: 1.8.15
|
|
86
76
|
signing_key:
|
|
87
77
|
specification_version: 3
|
|
88
|
-
summary:
|
|
78
|
+
summary: Ruby style puts instead of console.log for logging to console from coffescript
|
|
89
79
|
test_files: []
|