requirejs_integrator 1.0.0 → 2.0.0

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
- MDBiOTQ0ODM4MzE0MzFkMGViNmE0ZDJiYWM5MDExZThjZWIwYWM2ZQ==
4
+ ODRiZTA2ZTQ5ZTU5NjAzYTRiN2RkNDk5OGIzMGM0YmZiOTc4YWM5Nw==
5
5
  data.tar.gz: !binary |-
6
- NDAwY2EyM2E3YjQ2YmY2ZTI0M2NiYzYxOTJkMTg1NmYyNDA1YTJiYw==
6
+ OTdkYjg3OTQ1YjE5YmJiNTFkOTQ0OWJjMjc3NDY1YzZkNzJhMjdlNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDVlY2JjZmE4YzczOThkZTliY2Q4ZTY4NGM0OTc3NTViYmIyNzA0YTE3MzEz
10
- YmNhYzQ1Njc1Mjg0ZmYyMDQ1Y2I0MmUwYWRlYzlkZDQ1ZDU1NGQ4OTgyYmJl
11
- NjdlYTI3OTk5OTU1N2JjNWNjZmFiZDE5ZDJlYzU5ZDMzNTdkMWQ=
9
+ MTk3MWQ1NjU1NTA0NmE2YjdjMmU4MmZkZmZjZTczMTQ3NDhmODU5NDUyMzBm
10
+ NzY3ZGRlMjlmOTk0ZWE3OTg0YmE4MTkyYzc5Mzc1OTkwNGZiMzJiMmU0OTky
11
+ ZWQ0ODlhYzk0ODlmM2NjZTI2OGU2ZjI0OGY0ZTdjODJiODNhMTc=
12
12
  data.tar.gz: !binary |-
13
- MmEzM2I2ODU4Nzc0YmFhZmMzY2Q3YmVlMmNlMTRmMzliYzVlYTIyZDhmOWE1
14
- NzA2N2UzZTMwYWU4Y2QxNzAxZDFjZTg1Zjg2M2ZiYjFhYTcyNGFkMTA1ZDdm
15
- OTRhN2IwZDA0NjhkZGM0MjI2YmQzMzgwYTU1N2QyMjk5ZDMzNTQ=
13
+ ZWU5NDkyNTYwMTkwYjExNGVjMTg5MmJhZWY5Njc0MjFmNWJhN2M3ZTE4OTNi
14
+ M2FkZWYwZTI4N2NjYzRlMDkyZjMxNzU5OWVmMDRlMjlhYjk0NDhkNjAyZTEw
15
+ YzI4MjllNDBjYWNhMWFlZTRjZjg4MjE4M2ZiOTlmOTk2YzcwYzg=
@@ -1,3 +1,7 @@
1
+ === 2.0.0 (2015.07.06)
2
+
3
+ * rename env variables
4
+
1
5
  === 1.0.0 (2015.07.02)
2
6
 
3
7
  * publication of the code
data/Gemfile CHANGED
@@ -1,3 +1,3 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
3
  gemspec
@@ -1 +1 @@
1
- require 'requirejs_integrator/tasks'
1
+ require "requirejs_integrator/tasks"
@@ -17,5 +17,5 @@
17
17
  # You should have received a copy of the GNU General Public License
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
- tasks_path = File.join(File.dirname(__FILE__), 'tasks')
20
+ tasks_path = File.join(File.dirname(__FILE__), "tasks")
21
21
  Dir["#{tasks_path}/*.rake"].each { |ext| load ext } if defined?(Rake)
@@ -17,25 +17,23 @@
17
17
  # You should have received a copy of the GNU General Public License
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
- require 'system_executor'
21
- require 'stdout_outputter'
20
+ require "system_executor"
21
+ require "stdout_outputter"
22
22
 
23
23
  namespace :ri do
24
-
25
- desc 'Install default r.js config'
24
+ desc "Install default r.js config"
26
25
  task :config do
27
26
  default_config_path = File.join(
28
- Gem.datadir('requirejs_integrator'),
29
- 'build_default.js'
27
+ Gem.datadir("requirejs_integrator"),
28
+ "build_default.js"
30
29
  )
31
30
  current_path = Rake.application.original_dir
32
- current_configdir_path = File.join(current_path, 'config')
33
- current_config_path = File.join(current_configdir_path, 'build.js')
31
+ current_configdir_path = File.join(current_path, "config")
32
+ current_config_path = File.join(current_configdir_path, "build.js")
34
33
  unless File.exist?(current_config_path)
35
- StdoutOutputter::Outputter.new.write '*** Creating default r.js configuration ***'
34
+ StdoutOutputter::Outputter.new.write "*** Creating default r.js configuration ***"
36
35
  SystemExecutor::Executor.new.run "mkdir -p #{current_configdir_path}"
37
36
  SystemExecutor::Executor.new.run "cp #{default_config_path} #{current_config_path}"
38
37
  end
39
38
  end
40
-
41
39
  end
@@ -17,47 +17,45 @@
17
17
  # You should have received a copy of the GNU General Public License
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
- require 'exec_executor'
21
- require 'system_executor'
22
- require 'stdout_outputter'
20
+ require "exec_executor"
21
+ require "system_executor"
22
+ require "stdout_outputter"
23
23
 
24
24
  namespace :ri do
25
-
26
- desc 'Compile js'
25
+ desc "Compile js"
27
26
  task :compile do
28
- rjs_path = File.join(Gem.datadir('requirejs_integrator'), 'r.js')
29
- project_dir = ENV['project_dir'] || 'sinatra_ui'
30
- public_dir = ENV['public_dir'] || 'public'
31
- rjs_base_dir = ENV['rjs_base_dir'] || 'javascripts'
32
- rjs_opt_dir = ENV['rjs_opt_dir'] || 'js'
33
- appDir_path = File.join(
27
+ rjs_path = File.join(Gem.datadir("requirejs_integrator"), "r.js")
28
+ project_ui_dir = ENV["PROJECT_UI_DIR"] || "."
29
+ project_public_dir = ENV["PROJECT_PUBLIC_DIR"] || "public"
30
+ project_js_dir = ENV["PROJECT_JS_DIR"] || "javascripts"
31
+ project_rjs_dir = ENV["PROJECT_RJS_DIR"] || "js"
32
+ app_dir_path = File.join(
34
33
  Rake.application.original_dir,
35
- project_dir,
36
- public_dir,
37
- rjs_base_dir
34
+ project_ui_dir,
35
+ project_public_dir,
36
+ project_js_dir
38
37
  )
39
38
  dir_path = File.join(
40
39
  Rake.application.original_dir,
41
- project_dir,
42
- public_dir,
43
- rjs_opt_dir
40
+ project_ui_dir,
41
+ project_public_dir,
42
+ project_rjs_dir
44
43
  )
45
- mainConfigFile_path = File.join(
44
+ main_config_file_path = File.join(
46
45
  Rake.application.original_dir,
47
- project_dir,
48
- public_dir,
49
- rjs_base_dir,
50
- 'main.js'
46
+ project_ui_dir,
47
+ project_public_dir,
48
+ project_js_dir,
49
+ "main.js"
51
50
  )
52
51
  StdoutOutputter::Outputter.new.write "*** Compile js files ***"
53
- SystemExecutor::Executor.new.run "node #{rjs_path} -o " \
54
- + "config/build.js " \
55
- + "appDir=#{appDir_path} " \
56
- + "baseUrl=./ " \
57
- + "mainConfigFile=#{mainConfigFile_path} " \
58
- + "dir=#{dir_path} "
52
+ SystemExecutor::Executor.new.run "node #{rjs_path} -o \
53
+ config/build.js \
54
+ appDir=#{app_dir_path} \
55
+ baseUrl=./ \
56
+ mainConfigFile=#{main_config_file_path} \
57
+ dir=#{dir_path}"
59
58
  end
60
59
 
61
- task c: %w[compile]
62
-
60
+ task c: %w(compile)
63
61
  end
@@ -18,5 +18,5 @@
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module RequirejsIntegrator
21
- VERSION = '1.0.0'
21
+ VERSION = "2.0.0"
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: requirejs_integrator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-02 00:00:00.000000000 Z
11
+ date: 2015-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: exec_executor
@@ -108,7 +108,7 @@ dependencies:
108
108
  - - ! '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
- description: ''
111
+ description: The tasks for assets managment with requirejs
112
112
  email: s.kopciewski@gmail.com
113
113
  executables: []
114
114
  extensions: []
@@ -148,5 +148,5 @@ rubyforge_project:
148
148
  rubygems_version: 2.2.5
149
149
  signing_key:
150
150
  specification_version: 4
151
- summary: ''
151
+ summary: The tasks for assets managment with requirejs
152
152
  test_files: []