gfranco-jeanny 0.8

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 (3) hide show
  1. data/README +8 -0
  2. data/lib/jeanny.rb +35 -0
  3. metadata +56 -0
data/README ADDED
@@ -0,0 +1,8 @@
1
+ Jeanny GEM
2
+ ---------------------
3
+
4
+ Usage:
5
+
6
+ require 'jeanny'
7
+
8
+ # blah blah blah
@@ -0,0 +1,35 @@
1
+
2
+ #
3
+ # jeanny.rb
4
+ # jeanny
5
+ #
6
+ # Created by seriously drunken on 2009-09-16.
7
+ # Copyright 2009 Yandex. All rights reserved.
8
+ #
9
+
10
+ $:.unshift File.dirname(__FILE__) unless $:.include? File.dirname(__FILE__)
11
+
12
+ module Jeanny
13
+
14
+ JEANNY_VERSION = '0.8'
15
+
16
+ end
17
+
18
+ require 'jeanny/extend'
19
+ require 'jeanny/engine'
20
+ require 'jeanny/sugar'
21
+
22
+ # USAGE ######################################################
23
+
24
+ # include Jeanny::Sugar
25
+ #
26
+ # analyze('serp/css/_temp.css', :compare_with => 'classes.saved') and save
27
+ #
28
+ # group :css, :title => 'replacing in stylesheets' do
29
+ # replace :in => 'serp/block/*/*.css'
30
+ # end
31
+ #
32
+ # group :html, :title => 'replacing in template files' do
33
+ # replace :in => ['serp/page/*.xsl']
34
+ # replace :in => ['serp/block/*/*.xsl']
35
+ # end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gfranco-jeanny
3
+ version: !ruby/object:Gem::Version
4
+ version: "0.8"
5
+ platform: ruby
6
+ authors:
7
+ - gfranco
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-05-16 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Lib for obfuscation css class names
17
+ email: hello@gfranco.ru
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - README
26
+ - lib/jeanny.rb
27
+ has_rdoc: true
28
+ homepage: http://github.com/gfranco/jeanny
29
+ licenses:
30
+ post_install_message:
31
+ rdoc_options:
32
+ - --inline-source
33
+ - --charset=UTF-8
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: "0"
41
+ version:
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: "0"
47
+ version:
48
+ requirements: []
49
+
50
+ rubyforge_project:
51
+ rubygems_version: 1.3.5
52
+ signing_key:
53
+ specification_version: 2
54
+ summary: Jeanny lib
55
+ test_files: []
56
+