itamae-plugin-recipe-atom 0.0.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: cf0d3d7b6c8e02e52e9ebea8373307d09b7edc4d
4
+ data.tar.gz: 37afe8a0b6ad686204985ec23674a93d8bd6128d
5
+ SHA512:
6
+ metadata.gz: cea47b96c8b7ef2dbfd4e21c22ebb050be43e156a9aa96b8f7e7bf92ac358162fa6bf33dbab6a1d96406a4b09b3371507f9cafe3d58aea1f02898c47926dca73
7
+ data.tar.gz: 81f6cd04ec3410a4ef01bb00cc88885f38c1594ef6ec22a13a5136dd68073f1069899610c035e8d81ff9ddd71d5851db1b3e358017387f06d4b7c408308a3c43
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in itamae-plugin-recipe-atom.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 fukuiretu
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,100 @@
1
+ # itamae-plugin-recipe-atom
2
+
3
+ Plugin to support the [Atom](https://atom.io/) for [Itamae](https://github.com/itamae-kitchen/itamae)
4
+
5
+
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'itamae-plugin-recipe-atom'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install itamae-plugin-recipe-atom
22
+
23
+
24
+
25
+ ## Usage
26
+
27
+ ### Recipe
28
+
29
+ ##### your recipe example
30
+ ```ruby
31
+ include_recipe 'atom::config'
32
+ include_recipe 'atom::package'
33
+ ```
34
+
35
+ ### Node
36
+ case was an example the yaml
37
+
38
+ ##### your node example
39
+ ```yaml
40
+ atom:
41
+ install_packages:
42
+ - monokai
43
+ - dash
44
+ - file-icons
45
+ - highlight-selected
46
+ - highlight-column
47
+ - highlight-line
48
+ - japanese-wrap
49
+ - recent-files
50
+ - sublime-style-column-selection
51
+ - ask-stack
52
+ - show-ideographic-space
53
+ - jumpy
54
+ - symbols-tree-view
55
+ - autocomplete-plus
56
+ - autocomplete-emojis
57
+ - autocomplete-snippets
58
+ - autocomplete-paths
59
+ - linter
60
+ - linter-coffeelint
61
+ - linter-erb
62
+ - linter-rubocop
63
+ - linter-haml
64
+ - linter-ruby
65
+ - linter-shellcheck
66
+ - git-grep
67
+ - git-diff
68
+ - git-log
69
+ - git-control
70
+ - term2
71
+ - script
72
+ - rspec
73
+ - web-view
74
+ - serverspec-snippets
75
+ - language-rspec
76
+ - vim-mode
77
+ configs:
78
+ config: /path/to/config.cson
79
+ keymap: /path/to/keymap.cson
80
+ snippets: /path/to/snippets.cson
81
+ styles: /path/to/styles.less
82
+ ```
83
+
84
+ ##### Description of Option
85
+ - **install_packages** : run the `apm install XXXXX`. To specify the packages you want to add an array
86
+ - **configs**
87
+ - **config**: `~/.atom/config.cson` replace the specified file.Original file back up as `~/.atom/config.cson.bk`.
88
+ - **keymap**: `~/.atom/keymap.cson` replace the specified file.Original file back up as `~/.atom/keymap.cson.bk`.
89
+ - **snippets**: `~/.atom/snippets.cson` replace the specified file.Original file back up as `~/.atom/snippets.cson.bk`.
90
+ - **styles**: `~/.atom/styles.less` replace the specified file.Original file back up as `~/.atom/styles.less.bk`.
91
+
92
+
93
+
94
+ ## Contributing
95
+
96
+ 1. Fork it ( https://github.com/fukuiretu/itamae-plugin-recipe-atom/fork )
97
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
98
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
99
+ 4. Push to the branch (`git push origin my-new-feature`)
100
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'itamae/plugin/recipe/atom/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "itamae-plugin-recipe-atom"
8
+ spec.version = Itamae::Plugin::Recipe::Atom::VERSION
9
+ spec.authors = ["fukuiretu"]
10
+ spec.email = ["s0232101@gmail.com"]
11
+ spec.summary = %q{Plugin to support the Atom for Itamae}
12
+ spec.description = %q{Plugin to support the Atom for Itamae}
13
+ spec.homepage = "https://github.com/fukuiretu/itamae-plugin-recipe-atom"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,8 @@
1
+ module Itamae
2
+ module Plugin
3
+ module Recipe
4
+ module Atom
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,22 @@
1
+ ATOM_DIR = '~/.atom'
2
+
3
+ %W(
4
+ config
5
+ keymap
6
+ snippets
7
+ styles
8
+ ).each do |v|
9
+ from_config_file_path = node[:atom][:configs][v]
10
+ next if from_config_file_path.nil?
11
+
12
+ config_file_name = v == 'styles' ? "#{v}.less" : "#{v}.cson"
13
+
14
+ execute "backup origin file #{config_file_name}" do
15
+ command "cp #{ATOM_DIR}/#{config_file_name} #{ATOM_DIR}/#{config_file_name}.bk"
16
+ end
17
+
18
+
19
+ execute "setting #{config_file_name}" do
20
+ command "cp -f #{from_config_file_path} #{ATOM_DIR}/#{config_file_name}"
21
+ end
22
+ end
@@ -0,0 +1,6 @@
1
+ node['atom']['install_packages'].each do |package|
2
+ execute "Install Atom package: #{package}" do
3
+ command "apm install #{package}"
4
+ not_if "apm list | grep -q #{package}"
5
+ end
6
+ end
@@ -0,0 +1,9 @@
1
+ module Itamae
2
+ module Plugin
3
+ module Recipe
4
+ module Atom
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: itamae-plugin-recipe-atom
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - fukuiretu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Plugin to support the Atom for Itamae
42
+ email:
43
+ - s0232101@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - itamae-plugin-recipe-atom.gemspec
54
+ - lib/itamae/plugin/recipe/atom.rb
55
+ - lib/itamae/plugin/recipe/atom/config.rb
56
+ - lib/itamae/plugin/recipe/atom/package.rb
57
+ - lib/itamae/plugin/recipe/atom/version.rb
58
+ homepage: https://github.com/fukuiretu/itamae-plugin-recipe-atom
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.4.5
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Plugin to support the Atom for Itamae
82
+ test_files: []