r_kit 0.2.1 → 0.2.1.1

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzM0ZTdlMTIxMWQ0NjBiNDQxMTQ5YmZlNDM5ODllN2NkOWRlYWIxOA==
4
+ MDU0ZWMxMWM2MTA5OGYxMzQzMjliMTQ4MGE1NDhiNzgxYjFmYzkyMA==
5
5
  data.tar.gz: !binary |-
6
- NzA4OTljZTFlNmY2NGQ0MTY2NmNiNGFkNjBjOWYzYjY1MDAyMWM0NQ==
6
+ NzNlNWNlYmQxNGRjYzE0NjM1YzVlOWZlNGNkNWMwNzYzZWFlNjFmMg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NGE1NTQ3OWM4ZDBkYjM4ZDRlYTc4YzFkNDAyMzQ0MjUwYzAwODIwZmZhNGNl
10
- ZWNkZjlmOWI4NzZkMWRmYTNjNTA2YzA3ODZhMGVmODk2YjBiNWI1M2U5ZDY4
11
- NmI0NWRiNjJlYzVlNDY2YWYyMGY0YWJhNWIwMTQ5OWY0NDVhMjI=
9
+ NWY5ZWZkZTgxNWZjNDc1MjI4ZWJiZWVhYjgyMzIyZGMyZGE4NDQzZTEzMThk
10
+ ZmNmYWM2NTZiNTNmN2IwNTY5NDI0MTg2MDlhZGNhMzYxMjA3NGZkMDM5NGYy
11
+ Y2Y0Y2QyMmVlMWExZTllZmQ4NjMxZTJmMTdkYTkyODJlNGNhYjQ=
12
12
  data.tar.gz: !binary |-
13
- NzdkNTAwZWM0Njg4MmRmYzE0OTBkNzFjM2Q2Mjc0ZDgyN2RkNmI5YjQ2ZWJi
14
- NGMwYzE4YTA3MzU5NGUyODk5NWI5ZGE1Yjc0OWU4MzI0ZmIwMTU4MWI0MzFk
15
- NmY5Yzc3ZDE2NmFlMzhkZGY3ZDMwYzRjNDIxNWIxM2Q5ZGY5MGU=
13
+ MzczNzUzYjQwYjc1MjlhMzJjMTI4M2YzMDAxMjk4Y2UzNmE1NjgyNTEwMWE5
14
+ Yzg0MDdmYmI1YTQyNTYxZWRhYmM1MDU4Y2Q1MWI3YmQ5MDFkOThkOTZlMDNh
15
+ OTAyYmM0NTg5YWY2ZTliNGJhZDcyZTVmNDUzZDMyMTYxMjRhYmQ=
@@ -5,5 +5,5 @@
5
5
  padding: .625em;
6
6
 
7
7
  background-color: $primary-color;
8
- color: $application-background-color;
8
+ color: $background-color;
9
9
  }
@@ -5,8 +5,8 @@ html{
5
5
  }
6
6
 
7
7
  body{
8
- background-color: $application-background-color;
9
- color: $typography-text-color;
8
+ background-color: $background-color;
9
+ color: $text-color;
10
10
 
11
11
  margin: 0 0 1em;
12
12
  }
@@ -1,5 +1,5 @@
1
1
  a{
2
- color: $typography-link-color;
2
+ color: $link-color;
3
3
  text-decoration: none;
4
4
 
5
5
  &:hover{
@@ -4,6 +4,7 @@ $secondary-color: skyblue !default;
4
4
  // need here defaults colors
5
5
  // colors needed : success - warning - danger - info - muted
6
6
  // for each of : classic - text - background
7
+ // look into theeses colors : cornflowerblue, firebrick, gold, limegreen
7
8
 
8
9
  /*
9
10
  $success-color
@@ -13,6 +14,7 @@ $info-color
13
14
  $muted-color
14
15
  */
15
16
  $text-color: #888 !default;
17
+ $link-color: $secondary-color !default;
16
18
  /*$text-success-color
17
19
  $text-warning-color
18
20
  $text-danger-color
@@ -1,4 +1 @@
1
1
  @import "variables/colors";
2
-
3
- @import "variables/application";
4
- @import "variables/typography";
data/lib/r_kit/engine.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module RKit
2
2
  class Engine < ::Rails::Engine
3
3
  end
4
- end
4
+ end
data/lib/r_kit/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RKit
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.1.1"
3
3
  end
data/r_kit.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
8
8
  gem.version = RKit::VERSION
9
9
  gem.authors = ["Thomas Petrachi"]
10
10
  gem.email = ["thomas.petrachi@vodeclic.com"]
11
- gem.description = %q{Library for rails projects}
12
- gem.summary = %q{Code library for rails : ruby core extend / rails helpers / css / js}
11
+ gem.description = %q{Rails tools box}
12
+ gem.summary = %q{Rails tools box : Core extentions, Pagination, Decorator, CSS, Javascript, and others comming. A flexible gem that hold a number of basics services for rails applications.}
13
13
  gem.homepage = "https://github.com/petrachi/r_kit"
14
14
  gem.license = 'MIT'
15
15
 
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Petrachi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-16 00:00:00.000000000 Z
11
+ date: 2014-03-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Library for rails projects
13
+ description: Rails tools box
14
14
  email:
15
15
  - thomas.petrachi@vodeclic.com
16
16
  executables: []
@@ -50,9 +50,7 @@ files:
50
50
  - lib/assets/stylesheets/r_kit/mixins/keyframes.scss
51
51
  - lib/assets/stylesheets/r_kit/mixins/titles.scss
52
52
  - lib/assets/stylesheets/r_kit/variables.scss
53
- - lib/assets/stylesheets/r_kit/variables/application.scss
54
53
  - lib/assets/stylesheets/r_kit/variables/colors.scss
55
- - lib/assets/stylesheets/r_kit/variables/typography.scss
56
54
  - lib/r_kit.rb
57
55
  - lib/r_kit/core.rb
58
56
  - lib/r_kit/core/object.rb
@@ -88,5 +86,7 @@ rubyforge_project:
88
86
  rubygems_version: 2.1.11
89
87
  signing_key:
90
88
  specification_version: 4
91
- summary: ! 'Code library for rails : ruby core extend / rails helpers / css / js'
89
+ summary: ! 'Rails tools box : Core extentions, Pagination, Decorator, CSS, Javascript,
90
+ and others comming. A flexible gem that hold a number of basics services for rails
91
+ applications.'
92
92
  test_files: []
@@ -1 +0,0 @@
1
- $application-background-color: $background-color !default;
@@ -1,2 +0,0 @@
1
- $typography-text-color: $text-color !default;
2
- $typography-link-color: $secondary-color !default;