cssbt 0.0.1.alpha → 0.1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae51fd73d0d6fdd460e6b8fbeb4224ca87e62b4e
4
- data.tar.gz: 64fc46160d95e0e279b6a4dc6aa2fefd0ffc3d9b
3
+ metadata.gz: f53d29346d08cd105fa55f3ac7323369f3ca1fb1
4
+ data.tar.gz: 3f0b8127aebb82ba3b2e5f4166df104562dd40aa
5
5
  SHA512:
6
- metadata.gz: b5f68faeb2bcb7b6999e455a406967ef2e3a97f683e6c4efc948822dc419e9c20ba864134d200821b580dc74895ac2789a654dbf7376db91568138c9ef0b7c37
7
- data.tar.gz: d57ff6412b8b9da1b309c3734a0c7c49a59c50e44f6b7c4abbd5b6c454c79ac761c6520d8876bb7989da46947ac9bfe59fd05731039d969dc71024134fec5384
6
+ metadata.gz: 91389eb7d9e9094cc68e47f81a173513536a763b1b32fc29a12ab8e656ef8b20f4ca41ebd690ec0798ce3cb1c016cbc874c6ac70bd5ca9f417b302693441670d
7
+ data.tar.gz: 4d3f369c39380a4c028058b29bffcdf0ce25bb150c865ddbbde58db1905e70a5321f32eccf0e5bcc5ef6ec25b4b8271a0f6d60be7541d860052fd0267380c24a
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+
2
+ *.lock
3
+ *.ruby-version
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ rvm:
2
+ - "2.0.0"
3
+
4
+ after_script: rake
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # A sample Gemfile
2
+ source "https://rubygems.org"
3
+
4
+ # gem "rails"
5
+ gemspec :development_group => :dev
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 kvsatya
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,9 @@
1
+
2
+
3
+ =====CSSBT {<img src="https://travis-ci.org/kvsatya/cssbt.png" />}[https://travis-ci.org/kvsatya/cssbt]
4
+
5
+ Rails Asset-Pipeline Gem Also Generate css and js Files For Twitter bootstrap , Foundation
6
+
7
+ =====USAGE
8
+
9
+
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ #rakefile
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new
5
+
6
+ task :default => [:spec]
7
+ task :test => :spec
data/cssbt.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ $:.push File.expand_path("../lib",__FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "cssbt"
5
+ s.version = "0.1.0.pre"
6
+ s.summary = "Generator gem"
7
+ s.description = "Bootstrap and Foundation Css and Js file generator"
8
+ s.author = ["kvsatya"]
9
+ s.email = "codewoo@gmail.com"
10
+ s.files = `git ls-files`.split($/)
11
+ s.require_paths = ["lib"]
12
+ s.homepage = 'https://github.com/kvsatya/cssbt'
13
+ s.license = 'MIT'
14
+
15
+
16
+ s.add_development_dependency 'bundler', '>= 1.2'
17
+ s.add_development_dependency 'rspec', '>= 2.10'
18
+
19
+ s.add_runtime_dependency 'rails', '>= 3.2'
20
+
21
+ end
@@ -0,0 +1,7 @@
1
+ module Cssbt
2
+ class Engine < ::Rails::Engine
3
+ config.autoload_paths += Dir["#{config.root}/app/**/"]
4
+ end
5
+ end
6
+
7
+
File without changes
data/lib/cssbt.rb ADDED
@@ -0,0 +1,10 @@
1
+
2
+
3
+ module Cssbt
4
+
5
+ if defined?(Rails)
6
+ require 'cssbt/engine'
7
+ else
8
+ require 'cssbt/insert'
9
+ end
10
+ end
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Explain the generator
3
+
4
+ Example:
5
+ rails generate install Thing
6
+
7
+ This will create:
8
+ what/will/it/create