designmodo-flatuipro-rails 1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a58c9bb0082214f37eb7ed92902268b38ea3a283
4
+ data.tar.gz: 9f593ef91c0f0ffea9e9c25e1d49d98bbde3960d
5
+ SHA512:
6
+ metadata.gz: 680561da27d78e747b3efac799829ac324c9c85e01df06c83b4cd298ac15d62bc2f3e0fb0726ecdd217d82ec76da039c2f64e01ba3e744d06905163d1db7c406
7
+ data.tar.gz: 24312704e4065bdaf341c954fc2e0c5ad38d728efe0b08b35576abeeb4737c277e14092b04c5d6f6c954a4cca86223dc2c69d142575134ae62473cf4c1ee6139
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013, Samuel Chou
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+ 2. Redistributions in binary form must reproduce the above copyright notice,
10
+ this list of conditions and the following disclaimer in the documentation
11
+ and/or other materials provided with the distribution.
12
+
13
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,46 @@
1
+ <a href="http://designmodo.com/shop/?u=223" target="_blank"><img src="http://designmodo.com/img/affiliate/flatui_468_60.jpg" border="0"/></a>
2
+
3
+ This gem integrates Designmodo's Flat UI Pro Design for Twitter Bootstrap into the Rails 3 and 4 Asset Pipeline.
4
+
5
+ You **must** purchase and download a licensed copy to use this gem (none of the assets are packaged per Flat UI Pro license). You may do so by clicking the above image (full disclosure: affiliate link).
6
+
7
+ The version major and minor should match the Flat UI Pro version. Anything after the major or minor are gem versions.
8
+
9
+ ## Installation
10
+ First install and configure dependencies: [twitter-bootstrap-rails](https://github.com/seyhunak/twitter-bootstrap-rails) and [jquery-ui-rails](https://github.com/joliss/jquery-ui-rails) .
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ gem 'designmodo-flatuipro-rails'
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install designmodo-flatuipro-rails
23
+
24
+ One **must** run the install generator after install *and* after update of designmodo-flatuipro-rails gem:
25
+
26
+ $ rails generate flatuipro:install <Flat UI Pro Directory>
27
+
28
+ ## Usage
29
+ After running the install generator, all assets should be setup.
30
+
31
+ This gem will detect whether you chose less/static for the twitter-bootstrap-rails install and generate either less/css flatuipro files accordingly.
32
+
33
+ ## Thanks
34
+ Any and all donations are much appreciated =).
35
+
36
+ Gittip: [reflection](https://www.gittip.com/reflection/)
37
+
38
+ Designmodo Affiliate Link (image above)
39
+
40
+ ## Contributing
41
+
42
+ 1. Fork it
43
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
44
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
45
+ 4. Push to the branch (`git push origin my-new-feature`)
46
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,17 @@
1
+ require "designmodo/flatuipro/rails/version"
2
+
3
+ module Designmodo
4
+ module Flatuipro
5
+ module Rails
6
+ class Engine < ::Rails::Engine
7
+ initializer 'designmodo-flatuipro-rails.setup',
8
+ :after => 'less-rails.after.load_config_initializers',
9
+ :group => :all do |app|
10
+ if defined?(Less)
11
+ app.config.less.paths << File.join(config.root, 'vendor', 'less')
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,7 @@
1
+ module Designmodo
2
+ module Flatuipro
3
+ module Rails
4
+ VERSION = "1.1.1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,112 @@
1
+ require 'rails/generators'
2
+ require 'pathname'
3
+
4
+ module Flatuipro
5
+ module Generators
6
+ class InstallGenerator < Rails::Generators::Base
7
+ desc "Copies licensed Flat UI Pro files to designmodo-flatuipro-rails gem."
8
+ argument :flatuipro_dir, :type => :string, :banner => "<Licensed Flat UI Pro directory>"
9
+ source_root File.expand_path("../templates", __FILE__)
10
+
11
+ def copy_assets
12
+ if Pathname.new(flatuipro_dir).basename != "UI"
13
+ new_flatuipro_dir = File.join(flatuipro_dir, "HTML/UI")
14
+ if File.directory?(new_flatuipro_dir)
15
+ flatuipro_dir = new_flatuipro_dir
16
+ else
17
+ raise "Invalid Flat UI Pro directory"
18
+ end
19
+ end
20
+ gem_assets_dir = File.expand_path("../../../../../vendor/assets", __FILE__)
21
+
22
+ if use_less?
23
+ directory File.join(flatuipro_dir, "less"), File.join(gem_assets_dir, "less")
24
+ else
25
+ copy_file File.join(flatuipro_dir, "css", "flat-ui.css"), "app/assets/stylesheets/flat-ui.css"
26
+ end
27
+ directory File.join(flatuipro_dir, "js"), File.join(gem_assets_dir, "javascripts")
28
+ directory File.join(flatuipro_dir, "images"), File.join(gem_assets_dir, "images")
29
+ remove_file File.join(gem_assets_dir, "images", "exaple-image.jpg")
30
+ directory File.join(flatuipro_dir, "fonts"), File.join(gem_assets_dir, "fonts")
31
+ end
32
+
33
+ def add_assets
34
+ copy_file "flatuipro.js", "app/assets/javascripts/flatuipro.js"
35
+ if use_less?
36
+ copy_file "flatuipro.less", "app/assets/stylesheets/flatuipro.less"
37
+ end
38
+
39
+ # Handle JS Manifest
40
+ js_manifest = "app/assets/javascripts/application.js"
41
+ if File.exist?(js_manifest)
42
+ content = File.read(js_manifest)
43
+ unless content.match(/require\s+flatuipro/)
44
+ insert_into_file js_manifest, "//= require flatuipro\n", :after => "twitter/bootstrap\n"
45
+ end
46
+ unless content.match(/require\s+jquery.ui.all/)
47
+ unless content.match(/require\s+jquery.ui.effect/)
48
+ insert_into_file js_manifest, "//= require jquery.ui.effect\n", :after => "jquery\n"
49
+ end
50
+ unless content.match(/require\s+jquery.ui.tooltip/)
51
+ insert_into_file js_manifest, "//= require jquery.ui.tooltip\n", :after => "jquery\n"
52
+ end
53
+ unless content.match(/require\s+jquery.ui.spinner/)
54
+ insert_into_file js_manifest, "//= require jquery.ui.spinner\n", :after => "jquery\n"
55
+ end
56
+ unless content.match(/require\s+jquery.ui.slider/)
57
+ insert_into_file js_manifest, "//= require jquery.ui.slider\n", :after => "jquery\n"
58
+ end
59
+ unless content.match(/require\s+jquery.ui.datepicker/)
60
+ insert_into_file js_manifest, "//= require jquery.ui.datepicker\n", :after => "jquery\n"
61
+ end
62
+ end
63
+ else
64
+ copy_file "application.js", js_manifest
65
+ end
66
+
67
+ # Handle CSS Manifest
68
+ css_manifest = "app/assets/stylesheets/application.css"
69
+ if File.exist?(css_manifest)
70
+ content = File.read(css_manifest)
71
+ unless content.match(/require_tree\s+\./)
72
+ style_require_block = " *= require flatuipro\n"
73
+ insert_into_file css_manifest, style_require_block, :after => "require_self\n"
74
+ end
75
+ else
76
+ copy_file "application.css", "app/assets/stylesheets/application.css"
77
+ end
78
+ end
79
+
80
+ def patch_assets
81
+ gem_assets_dir = File.expand_path("../../../../../vendor/assets", __FILE__)
82
+
83
+ # Stylesheets patches
84
+ # image url() -> image-url()
85
+ # font url() -> font-url()
86
+ # LESS
87
+ if use_less?
88
+ # Should use image-url() here, but less-rails won't translate when inside ~""
89
+ gsub_file File.join(gem_assets_dir, "less/modules", "switch.less"), /url\('\.\.\/images\//, "url('/assets/"
90
+ gsub_file File.join(gem_assets_dir, "less", "icon-font.less"), /url\("\.\.\/fonts\//, 'font-url("'
91
+ # CSS
92
+ else
93
+ gsub_file "app/assets/stylesheets/flat-ui.css", /url\('\.\.\/images\//, "url('/assets/"
94
+ gsub_file "app/assets/stylesheets/flat-ui.css", /url\("\.\.\/fonts\//, 'url("/assets/'
95
+ end
96
+
97
+ end
98
+
99
+ private
100
+ # Detect if twitter-bootstrap-rails installed with LESS or static stylesheets
101
+ def use_less?
102
+ if File.exist?("app/assets/stylesheets/bootstrap_and_overrides.css.less")
103
+ return true
104
+ elsif File.exist?("app/assets/stylesheets/bootstrap_and_overrides.css")
105
+ return false
106
+ else
107
+ raise "Cannot detect twitter-bootstrap-rails install"
108
+ end
109
+ end
110
+ end
111
+ end
112
+ end
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,22 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery.ui.datepicker
15
+ //= require jquery.ui.slider.js
16
+ //= require jquery.ui.spinner.js
17
+ //= require jquery.ui.tooltip.js
18
+ //= require jquery.ui.effect.js
19
+ //= require jquery_ujs
20
+ //= require twitter/bootstrap
21
+ //= require flatuipro
22
+ //= require_tree .
@@ -0,0 +1,8 @@
1
+ //= require jquery.ui.touch-punch.min
2
+ //= require bootstrap-select
3
+ //= require bootstrap-switch
4
+ //= require flatui-checkbox
5
+ //= require flatui-radio
6
+ //= require jquery.tagsinput
7
+ //= require jquery.placeholder
8
+ //= require jquery.stacktable
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: designmodo-flatuipro-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Samuel Chou
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: twitter-bootstrap-rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: 2.2.6
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 2.2.6
27
+ - !ruby/object:Gem::Dependency
28
+ name: jquery-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 2.2.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: 2.2.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: jquery-ui-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: 4.0.3
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 4.0.3
55
+ description: designmodo-flatuipro-rails integrates Flat UI Pro for Rails 3 and 4 Asset
56
+ Pipeline
57
+ email:
58
+ - sam.chou@windystudios.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - lib/designmodo/flatuipro/rails/version.rb
64
+ - lib/designmodo/flatuipro/rails.rb
65
+ - lib/generators/flatuipro/install/templates/flatuipro.js
66
+ - lib/generators/flatuipro/install/templates/application.js
67
+ - lib/generators/flatuipro/install/templates/application.css
68
+ - lib/generators/flatuipro/install/templates/flatuipro.less
69
+ - lib/generators/flatuipro/install/install_generator.rb
70
+ - LICENSE.txt
71
+ - Rakefile
72
+ - README.md
73
+ homepage: https://github.com/reflection/designmodo-flatuipro-rails
74
+ licenses:
75
+ - Simplified BSD
76
+ metadata: {}
77
+ post_install_message: |-
78
+ **********************************************
79
+
80
+ One *must* run the `rails generate flatuipro:install <Flat UI Pro Directory>` generator
81
+ after install *and* after update of designmodo-flatuipro-rails gem.
82
+
83
+ **********************************************
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.0.0.rc.2
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: Flat UI Pro for Rails 3.2 Asset Pipeline
103
+ test_files: []